| | |
| | | |
| | | namespace WIDESEA_DTO.Inbound |
| | | { |
| | | [ModelValidate] |
| | | public class InboundOrderDetailAddDTO |
| | | { |
| | | /// <summary> |
| | | /// ç©æç¼å· |
| | | /// </summary> |
| | | [PropertyValidate("ç©æç¼å·", NotNullAndEmpty = true)] |
| | | public string MaterielCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç©æåç§° |
| | | /// </summary> |
| | | public string MaterielName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¹æ¬¡å· |
| | | /// </summary> |
| | | public string BatchNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åæ®æ°é |
| | | /// </summary> |
| | | [PropertyValidate("åæ®æ°é", NotNullAndEmpty = true, MinValue = 0, IsContainMinValue = false)] |
| | | public decimal OrderQuantity { get; set; } |
| | | |
| | | public int WaId { get; set; } |
| | | |
| | | public string Unit { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | public string Remark { get; set; } |
| | | } |
| | | } |