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