| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core.Attributes; | 
|   | 
| namespace WIDESEA_DTO.MES | 
| { | 
|     /// <summary> | 
|     /// 防焊前处理派工通知WMS | 
|     /// </summary> | 
|     [ModelValidate] | 
|     public class SolderMaskOutNotice | 
|     { | 
|         /// <summary> | 
|         /// 批次号 | 
|         /// </summary> | 
|         [PropertyValidate("批次号", NotNullAndEmpty = true)] | 
|         public string LotNo { get; set; } | 
|         /// <summary> | 
|         /// 目标地址码 | 
|         /// </summary> | 
|         [PropertyValidate("目标地址码", NotNullAndEmpty = true)] | 
|         public string TargetAddressCode { get; set; } | 
|     } | 
|     /// <summary> | 
|     /// 防焊立库到线边点 | 
|     /// </summary> | 
|     [ModelValidate] | 
|     public class SolderMaskOut | 
|     { | 
|         /// <summary> | 
|         /// 批次号 | 
|         /// </summary> | 
|         [PropertyValidate("批次号", NotNullAndEmpty = true)] | 
|         public string LotNo { get; set; } | 
|         /// <summary> | 
|         /// 目标地址码 | 
|         /// </summary> | 
|         [PropertyValidate("目标地址码", NotNullAndEmpty = true)] | 
|         public string TargetAddressCode { get; set; } | 
|     } | 
| } |