using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.FangCang { /// /// 产品数据 /// public class productSynchronous { /// /// 客户CODE 必填 /// public string customerCode { get; set; } /// /// 物料类型CODE(货类 必填 /// public string materialCode { get; set; } /// /// 产品编码 可空 /// public string productCode { get; set; } /// /// 产品名称 可空 /// public string productName { get; set; } /// /// 产品条码 可空 /// public string productBarCode { get; set; } /// /// 产品规格 可空 /// public string productSpecifications { get; set; } /// /// 计量单位 可空 /// public string unit { get; set; } /// /// 单品长 可空 /// public string singleProductLongNum { get; set; } /// /// 单品宽 可空 /// public string singleProductWideNum { get; set; } /// /// 单品高 可空 /// public string singleProductHighNum { get; set; } /// /// 单品重量 可空 /// public string singleProductWeight { get; set; } /// /// 单品体积 可空 /// public string singleProductVolume { get; set; } /// /// 是否删除 1是0否 必填 /// public string Is_delete { get; set; } } }