线边库
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DOAN.Model.MES.material.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 北泽线边库库位查询对象
|
||||
/// </summary>
|
||||
public class MaterialPartsStorageLocationsQueryDto : PagerInfo
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 北泽线边库库位输入输出对象
|
||||
/// </summary>
|
||||
public class MaterialPartsStorageLocationsDto
|
||||
{
|
||||
[Required(ErrorMessage = "库位ID不能为空")]
|
||||
public int LocationId { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "库位编码不能为空")]
|
||||
public string LocationCode { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "所属仓库ID不能为空")]
|
||||
public int WarehouseId { get; set; }
|
||||
|
||||
public DateTime? CreatedAt { get; set; }
|
||||
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user