抛光仓库配置
This commit is contained in:
48
ZR.Model/MES/wms/Dto/WmPolishWarehouseDto.cs
Normal file
48
ZR.Model/MES/wms/Dto/WmPolishWarehouseDto.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 三楼抛光仓库查询对象
|
||||
/// </summary>
|
||||
public class WmPolishWarehouseQueryDto : PagerInfo
|
||||
{
|
||||
public string Location { get; set; }
|
||||
public string Remark { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 三楼抛光仓库输入输出对象
|
||||
/// </summary>
|
||||
public class WmPolishWarehouseDto
|
||||
{
|
||||
[Required(ErrorMessage = "主键不能为空")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "库位不能为空")]
|
||||
public string Location { get; set; }
|
||||
|
||||
public int? PartCapacity { get; set; }
|
||||
|
||||
public int? TankCapacity { get; set; }
|
||||
|
||||
public int? BuildCapacity { get; set; }
|
||||
|
||||
public int? BoxPartNum { get; set; }
|
||||
|
||||
public string StorePartList { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
82
ZR.Model/MES/wms/WmPolishWarehouse.cs
Normal file
82
ZR.Model/MES/wms/WmPolishWarehouse.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 三楼抛光仓库
|
||||
/// </summary>
|
||||
[SugarTable("wm_polish_warehouse")]
|
||||
public class WmPolishWarehouse
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库位
|
||||
/// </summary>
|
||||
public string Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零件容量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "part_capacity")]
|
||||
public int? PartCapacity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱容量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "tank_capacity")]
|
||||
public int? TankCapacity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 每幢容量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "build_capacity")]
|
||||
public int? BuildCapacity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 一箱产品数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "box_part_num")]
|
||||
public int? BoxPartNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库描述
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "remark")]
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 存放产品描述
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "store_part_list")]
|
||||
public string StorePartList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user