using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Points { public class OperateGoodsReq { /// /// 操作类型,0下架、1上架 /// public int OperateType { get; set; } /// /// 商品id /// public long GoodsId { get; set; } } }