using DS.Module.Core; namespace DS.WMS.Core.Code.Dtos; /// /// 商品信息下拉返回 /// public class CodeGoodsSelectRes { /// /// 主键Id /// public long Id { get; set; } /// /// 商品编码 /// public string GoodsCode { get; set; }= ""; /// /// 商品名称 /// public string GoodName { get; set; }= ""; /// /// 物料号 /// public string GoodNo { get; set; }= ""; /// /// 英文名称 /// public string EnName { get; set; }= ""; /// /// 商品描述 /// public string Description { get; set; }= ""; /// /// 助记码 /// public string PinYinCode { get; set; } /// /// 商品类型 /// public long GoodsTypeId { get; set; }= 0; /// /// 商品类型名称 /// public string GoodsTypeName { get; set; } /// /// 计费大类 /// public long GoodsFeeTypeId { get; set; }= 0; /// /// 海关代码 /// public string HSCode { get; set; }= ""; /// /// 备注 /// public string Note { get; set; } = ""; /// /// 创建时间 /// public DateTime CreateTime { get; set; } }