1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.request.share
- {
- public class FJSyncMaterInfoListRequest:BaseRequest
- {
- 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; }
- }
- }
|