You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
816 B
25 lines
816 B
using System.ComponentModel.DataAnnotations;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
|
|
namespace Win_in.Sfs.Basedata.Application.Contracts;
|
|
|
|
[Display(Name = "物料和储位对应关系")]
|
|
|
|
public class ErpLocationItemDTO : SfsBaseDataDTOBase
|
|
{
|
|
/// <summary>
|
|
/// 物料代码
|
|
/// </summary>
|
|
[Display(Name = "物料代码")]
|
|
[Required(ErrorMessage = "{0}是必填项")]
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
|
|
public string ItemCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 储位代码
|
|
/// </summary>
|
|
[Display(Name = "储位代码")]
|
|
[Required(ErrorMessage = "{0}是必填项")]
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
|
|
public string ErpLocationCode { get; set; }
|
|
}
|
|
|