using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Code.Dtos { /// /// 商品信息回写请求 /// public class CodeGoodsWriteBackReq { /// /// 主键Id /// public long Id { get; set; } /// /// 商品名称 /// public string GoodName { get; set; } = ""; /// /// 海关代码 /// public string HSCode { get; set; } = ""; } }