成品仓库记录
This commit is contained in:
52
ZR.Model/MES/wms/Dto/WmGoodsRecordDto.cs
Normal file
52
ZR.Model/MES/wms/Dto/WmGoodsRecordDto.cs
Normal file
@@ -0,0 +1,52 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 成品库数据变动表查询对象
|
||||
/// </summary>
|
||||
public class WmGoodsRecordQueryDto : PagerInfo {
|
||||
public string FkInventoryId { get; set; }
|
||||
public string Code { get; set; }
|
||||
public string Partnumber { get; set; }
|
||||
public int? ChangeType { get; set; }
|
||||
public string CreatedBy { get; set; }
|
||||
public string Remark { get; set; }
|
||||
public DateTime? StartActionTime { get; set; }
|
||||
public DateTime? EndActionTime { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 成品库数据变动表输入输出对象
|
||||
/// </summary>
|
||||
public class WmGoodsRecordDto
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user