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