using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO { /// /// 测试架出仓模型 /// [ModelValidate] public class TestToolOutModel { /// /// 测架编码 /// [PropertyValidate("测架编码", NotNullAndEmpty = true)] public string ToolCode { get; set; } /// /// 目标地址码 /// [PropertyValidate("目标地址码", NotNullAndEmpty = true)] public string TargetAddressCode { get; set; } } /// /// 测试架报废模型 /// [ModelValidate] public class TestToolScrapModel { /// /// 测架编码 /// [PropertyValidate("测架编码", NotNullAndEmpty = true)] public string ToolCode { get; set; } } /// /// 测试架退库模型 /// [ModelValidate] public class TestToolBackModel { /// /// 源位置 /// [PropertyValidate("源位置", NotNullAndEmpty = true)] public string SourceAddressCode { get; set; } /// /// 测试架编码 /// [PropertyValidate("测试架编码", NotNullAndEmpty = true)] public string TestToolCode { get; set; } } }