using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.APIModel.Request { public class CreateTaskRequest { /// /// 货号 /// public string ProductNo { get; set; } /// /// sku图 /// public string Logo { get; set; } /// /// sku 名称 /// public string SkuName { get; set; } public long TaskId { get; set; } /// /// skuid /// public string SkuId { get; set; } /// /// 品名 /// public string BrandName { get; set; } /// /// sku数量 /// public int SkuCount { get; set; } /// /// 到货情况(待收货=0,部分收货=1,已到货=2) /// public int Availability { get; set; } /// /// 落仓(商家仓=0,云仓=1,京仓=2,3=聚水潭) /// public int PositionType { get; set; } /// /// 打包类型(单件=0,多件=1) /// public int PackType { get; set; } /// /// 配件数量 /// public int GoodsNumber { get; set; } /// /// sku配件名称 /// public string SkuGoodsTitle { get; set; } /// /// 基础包装(快递袋=0,纸箱=1,麻袋=2) /// public int BasicPack { get; set; } /// /// 增量耗材 /// public string Increment1 { get; set; } //条形码 合格证数据 /// /// 注意事项 /// public string MarkMessage { get; set; } /// /// 店铺 /// public string ShopId { get; set; } /// /// 需求方创建日期 /// public DateTime CreateTime { get; set; } /// /// 对接人 /// public string UserId { get; set; } /// ///条形码Id /// public long? BarCodeId { get; set; } /// /// 合格证Id /// public string CerId { get; set; } /// /// 合格证位置 /// public int? CertificatePosition { get; set; } //public Worry IsWorry { get; set; } public string OrderId { get; set; } public Platform Platform { get; set; } public bool NeedBar { get;set; } public bool NeedCer { get; set; } } }