抛光管理,完成抛光仓库入库,盘点,生成日志 条件查询功能

This commit is contained in:
2024-07-25 17:36:22 +08:00
parent 11d23f211f
commit d3029ed1e4
12 changed files with 1062 additions and 1 deletions

View File

@@ -168,6 +168,14 @@ namespace ZR.Model.MES.wms.Dto
}
/// <summary>
/// 物料下拉查询表
/// </summary>
public class WmMaterialSelectOptions
{
public string Key { get; set; }
public string Label { get; set; }
public string Value { get; set; }
}
}

View File

@@ -0,0 +1,66 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 工艺路线-抛光 库存表查询对象
/// </summary>
public class WmPolishInventoryQueryDto : 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 WmPolishInventoryDto
{
public string Id { get; set; }
public string BlankNum { get; set; }
public string Partnumber { get; set; }
public string Color { get; set; }
public string Specification { get; set; }
public string Description { get; set; }
public int? Quantity { 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 DateTime? ActionTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}

View File

@@ -0,0 +1,50 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 工艺路线-抛光 库存变动表查询对象
/// </summary>
public class WmPolishRecordQueryDto : PagerInfo
{
}
/// <summary>
/// 工艺路线-抛光 库存变动表输入输出对象
/// </summary>
public class WmPolishRecordDto
{
[Required(ErrorMessage = "主键不能为空")]
public string Id { get; set; }
[Required(ErrorMessage = "库存主键不能为空")]
public string FkInventoryId { get; set; }
public string Code { get; set; }
public string Partnumber { get; set; }
public string BlankNum { get; set; }
public int? ChangeType { get; set; }
public int? ChangeQuantity { get; set; }
public DateTime? ActionTime { 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; }
}
}