Files
kunshan-bzfm-mes-backend/DOAN.Model/MES/Material/Dto/MaterialPartsStorageLocationsDto.cs
qianhao.xu e14f34a107 线边库
2025-03-18 15:23:00 +08:00

35 lines
870 B
C#

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; }
}
}