本次提交为BZFM模块新增了物料管理相关的核心后端能力,包括库位、物料、物料分类、出入库记录、出入库类别等6张表的Controller、实体、DTO、Service及接口定义,实现了标准的增删改查接口,支持权限校验、AOP日志、分页查询等,完善了物料管理基础后端支撑。
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
|
|
namespace DOAN.Model.BZFM.Dto
|
|
{
|
|
/// <summary>
|
|
/// 库位表查询对象
|
|
/// </summary>
|
|
public class MmLocationQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 库位表输入输出对象
|
|
/// </summary>
|
|
public class MmLocationDto
|
|
{
|
|
[Required(ErrorMessage = "主键ID不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
[Required(ErrorMessage = "库位编码不能为空")]
|
|
public string LocationCode { get; set; }
|
|
|
|
[Required(ErrorMessage = "库位名称不能为空")]
|
|
public string LocationName { get; set; }
|
|
|
|
[Required(ErrorMessage = "仓库编码不能为空")]
|
|
public string WarehouseCode { get; set; }
|
|
|
|
public string WarehouseName { get; set; }
|
|
|
|
public string AreaCode { get; set; }
|
|
|
|
public string AreaName { get; set; }
|
|
|
|
public decimal Capacity { get; set; }
|
|
|
|
public string Unit { get; set; }
|
|
|
|
public string LocationType { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
[ExcelColumn(Name = "库位类型(半成品/成品/临时/返工/报废)")]
|
|
public string LocationTypeLabel { get; set; }
|
|
}
|
|
} |