| 123456789101112131415161718192021222324252627282930313233343536373839 | using System;using System.Collections.Generic;using System.Text;namespace wms.dto.request.share{    public class FJSyncMaterInfoListRequest:BaseRequest    {        /// <summary>        /// 过账凭证号        /// </summary>        public string ReqId { get; set; }        public List<FJSyncMaterInfoListRequestItem> ListInfo { get; set; }    }    public class FJSyncMaterInfoListRequestItem    {        public string MatCode { get; set; }        public string MatName { get; set; }        public string Describe { get; set; }        public string ProCode { get; set; }        public string ProName { get; set; }        public string ProStre { get; set; }        public decimal LinearMax { get; set; }        public decimal LinearMin { get; set; }        public decimal LinearTar { get; set; }        public string Plating { get; set; }        public decimal PlatingWeight { get; set; }        public decimal PlatingConQty { get; set; }        public decimal Mono { get; set; }        public bool IsHold { get; set; }        public decimal HoldDuration { get; set; }        public string SpoolType { get; set; }        public string SpoolCode { get; set; }        public string Unit { get; set; }        public DateTime UpdatedTime { get; set; }    }}
 |