using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.share
{
    public class FJSyncMaterInfoListRequest:BaseRequest
    {
        /// 
        /// 过账凭证号
        /// 
        public string ReqId { get; set; }
        public List 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; }
    }
}