¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.Attributes; |
| | | |
| | | namespace WIDESEA_DTO |
| | | { |
| | | [AnalysisRule, ModelValidate] |
| | | public class MatSerialNumberDTO |
| | | { |
| | | [AnalysisItemRule(WIDESEA_Core.Enums.AnalysisFormatType.MTC), PropertyValidate("ç©æç¼å·", NotNullAndEmpty = true)] |
| | | public string MaterielCode { get; set; } |
| | | |
| | | [AnalysisItemRule(WIDESEA_Core.Enums.AnalysisFormatType.MTPT), PropertyValidate("çäº§æ¥æ", NotNullAndEmpty = true)] |
| | | public string ProductionDate { get; set; } |
| | | |
| | | [AnalysisItemRule(WIDESEA_Core.Enums.AnalysisFormatType.BHN), PropertyValidate("æ¹æ¬¡å·", NotNullAndEmpty = true)] |
| | | public string BatchNo { get; set; } |
| | | |
| | | [AnalysisItemRule(WIDESEA_Core.Enums.AnalysisFormatType.MTQ), PropertyValidate("æ°é", NotNullAndEmpty = true)] |
| | | public decimal MaterielQuantity { get; set; } |
| | | |
| | | [AnalysisItemRule(WIDESEA_Core.Enums.AnalysisFormatType.ODN), PropertyValidate("订åç¼å·", NotNullAndEmpty = true)] |
| | | public string OrderNo { get; set; } |
| | | |
| | | [AnalysisItemRule(WIDESEA_Core.Enums.AnalysisFormatType.BD), PropertyValidate("åºåå·", NotNullAndEmpty = true)] |
| | | public string SerialNumber { get; set; } |
| | | } |
| | | } |