123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.response.cp
- {
- public class CPSyncMaterInfoResponse
- {
- public int TotalCount { get; set; }
- public List<CPSyncMaterInfoResponseItem> ResData { get; set; }
- }
- public class CPSyncMaterInfoResponseItem
- {
- 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; }
- }
- }
|