12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.response.fj
- {
- public class FJSyncMaterInfoResponse
- {
- public int TotalCount { get; set; }
- public List<FJSyncMaterInfoResponseItem> ResData { get; set; }
- }
- public class FJSyncMaterInfoResponseItem
- {
- 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; }
- }
- }
|