shgx_tz_mom/ZR.Model/MES/wms/Dto/WmOneTimeInventoryDto.cs

87 lines
2.3 KiB
C#
Raw Normal View History

namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 一次合格品仓库查询对象
/// </summary>
public class WmOneTimeInventoryQueryDto : PagerInfo {
public string BlankNum { get; set; }
public string Partnumber { get; set; }
public string Description { get; set; }
public int? Type { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 一次合格品仓库输入输出对象
/// </summary>
public class WmOneTimeInventoryDto
{
public string Id { get; set; }
public string BlankNum { get; set; }
public string Partnumber { get; set; }
public string WorkOrder { get; set; }
public string Color { get; set; }
public string Specification { get; set; }
public string Description { get; set; }
public int? Quantity { get; set; }
2024-10-29 17:35:32 +08:00
public int RealQuantity { get; set; }
public int? MaxNum { get; set; }
public int? MinNum { get; set; }
public int? WarnNum { get; set; }
public int? Type { get; set; }
public int? Status { 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; }
}
2024-11-18 20:13:49 +08:00
public class WmOneTimeInventoryTableDto
{
public int Total { get; set; }
public int StocktakingTotal { get; set; }
public int QuantitySum { get; set; }
public int RealQuantitySum { get; set; }
public List<WmOneTimeInventoryDto> Result { get; set; }
}
2024-11-15 18:51:05 +08:00
// 一次合格(产成品)导出
[SugarTable("wm_one_time_record", "一次合格表")]
2024-10-25 19:01:06 +08:00
public class WmOneTimeInventoryExportDto
{
2024-11-15 18:51:05 +08:00
[SugarColumn(ColumnName = "partnumber")]
2024-10-25 19:01:06 +08:00
public string { get; set; }
public string { get; set; }
public string { get; set; }
public string { get; set; }
2024-11-15 18:51:05 +08:00
[SugarColumn(ColumnName = "quantity")]
2024-10-25 19:01:06 +08:00
public int { get; set; } = 0;
public int { get; set; } = 0;
2024-11-15 18:51:05 +08:00
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? { get; set; }
2024-10-25 19:01:06 +08:00
}
}