key1_beacon_api/ARW.Model/Dto/Api/OrderManage/Orders/OrderApiDto.cs
2023-10-18 20:43:55 +08:00

23 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.OrderManage.Orders;
namespace ARW.Model.Dto.Api.OrderManage.Orders
{
/// <summary>
/// 订单优惠券对象Api
///
/// @author lwh
/// @date 2023-09-01
/// </summary>
public class OrderCoupon
{
public long ShopGuid { get; set; }
public int Key { get; set; }
}
}