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