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.
33 lines
1.0 KiB
33 lines
1.0 KiB
using System.ComponentModel.DataAnnotations;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
|
|
namespace Win_in.Sfs.Basedata.Application.Contracts;
|
|
|
|
[Display(Name = "位置码")]
|
|
|
|
public class PositionCodeDTO : SfsBaseDataDTOBase, IHasCode
|
|
{
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
[Display(Name = "代码")]
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 物料号
|
|
/// </summary>
|
|
[Display(Name = "物料号")]
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
|
|
public string PartCode { get; set; }
|
|
/// <summary>
|
|
/// 标包数量
|
|
/// </summary>
|
|
[Display(Name = "标包数量")]
|
|
public decimal StdPackQty { get; set; }
|
|
/// <summary>
|
|
/// 库位
|
|
/// </summary>
|
|
[Display(Name = "库位")]
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
|
|
public string LocationCode { get; set; }
|
|
}
|
|
|