using System; using System.Collections.Generic; using System.Text; namespace wms.dto.response { public class HJSyncMaterInfoResponse: SRes { public int TotalCount { get; set; } public List ResData { get; set; } } public class HJSyncMaterInfoResponseItem { public string MatCode { get; set; } public string MatName { get; set; } public string HeadTypeCode { get; set; } public string LeafTypeCode { get; set; } public string Describe { get; set; } public string Strength { get; set; } public string Plating { get; set; } public decimal PlatingWeight { get; set; } public decimal PlatingConQty { get; set; } public decimal Linear { get; set; } public bool IsHold { get; set; } public decimal HoldDuration { get; set; } public string WeightUnit { get; set; } public DateTime UpdatedTime { get; set; } } }