抛光仓库相关功能,未完成(但已部署)

This commit is contained in:
2024-08-05 10:19:26 +08:00
parent 512231d555
commit 73fce84068
15 changed files with 870 additions and 15 deletions

View File

@@ -0,0 +1,74 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 后道检验工单表查询对象
/// </summary>
public class WmPolishInspectionWorkorderQueryDto : PagerInfo
{
public string WorkorderNo { get; set; }
public string Partnumber { get; set; }
public string BlankNum { get; set; }
public List<DateTime?> OrderTimeList { get; set; }
public int? Type { get; set; }
public int? IsSend { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 后道检验工单表输入输出对象
/// </summary>
public class WmPolishInspectionWorkorderDto
{
[Required(ErrorMessage = "工单主键不能为空")]
public string Id { get; set; }
public string WorkorderNo { get; set; }
public string Partnumber { get; set; }
public string BlankNum { get; set; }
public int? Quantity { get; set; }
public int? PassNum { get; set; }
public int? PolishNum { get; set; }
public int? SandingNum { get; set; }
public int? DiscardNum { get; set; }
public DateTime? OrderTime { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public int? Type { get; set; }
public string Remark { get; set; }
public int? IsSend { get; set; }
public int? Status { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
}
}

View File

@@ -12,6 +12,7 @@ namespace ZR.Model.MES.wms.Dto
public string Code { get; set; }
public string BlankNum { get; set; }
public string Partnumber { get; set; }
public string Remark { get; set; }
public int? ChangeType { get; set; }
public DateTime? StartActionTime { get; set; }
public DateTime? EndActionTime { get; set; }

View File

@@ -0,0 +1,72 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 查询对象
/// </summary>
public class WmPolishWorkorderQueryDto : PagerInfo
{
public string WorkorderNo { get; set; }
public string Partnumber { get; set; }
public string BlankNum { get; set; }
public List<DateTime?> OrderTimeList { get; set; }
public int? Type { get; set; }
public int? IsSend { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 输入输出对象
/// </summary>
public class WmPolishWorkorderDto
{
[Required(ErrorMessage = "工单主键不能为空")]
public string Id { get; set; }
public string WorkorderNo { get; set; }
public string Partnumber { get; set; }
public string BlankNum { get; set; }
public int? Quantity { get; set; }
public int? PassNum { get; set; }
public int? SandingNum { get; set; }
public int? DiscardNum { get; set; }
public DateTime? OrderTime { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public int? Type { get; set; }
public string Remark { get; set; }
public int? IsSend { get; set; }
public int? Status { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
}
}