仓库-毛坯仓库添加,毛坯仓库日志添加

This commit is contained in:
2024-05-13 17:32:20 +08:00
parent 47dd0c4930
commit b4039d0b49
14 changed files with 791 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 毛坯库存表查询对象
/// </summary>
public class WmBlankInventoryQueryDto : PagerInfo
{
public string BlankNum { get; set; }
public int? Type { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 毛坯库存表输入输出对象
/// </summary>
public class WmBlankInventoryDto
{
// [Required(ErrorMessage = "主键不能为空")]
public string Id { get; set; }
public string FkPaintId { get; set; }
public string BlankNum { get; set; }
/// <summary>
/// 单位
///</summary>
public string Unit { get; set; }
/// <summary>
/// 颜色
///</summary>
public string Color { get; set; }
/// <summary>
/// 规格
///</summary>
public string Specification { get; set; }
/// <summary>
/// 描述
///</summary>
public string Description { get; set; }
/// <summary>
/// 版本号
///</summary>
public string Version { 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 string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}

View File

@@ -0,0 +1,43 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 毛坯库存库存变动记录表查询对象
/// </summary>
public class WmBlankRecordQueryDto : PagerInfo
{
}
/// <summary>
/// 毛坯库存库存变动记录表输入输出对象
/// </summary>
public class WmBlankRecordDto
{
[Required(ErrorMessage = "主键不能为空")]
public string Id { get; set; }
public string FkBlankInventoryId { get; set; }
public string BlankNum { get; set; }
public int? ChangeQuantity { get; set; }
public decimal Type { get; set; }
public decimal 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; }
}
}