67 lines
1.8 KiB
C#
67 lines
1.8 KiB
C#
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 一次合格品仓库记录表查询对象
|
|
/// </summary>
|
|
public class WmOneTimeRecordQueryDto : PagerInfo
|
|
{
|
|
public string Id { get; set; }
|
|
public string FkInventoryId { get; set; }
|
|
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; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 一次合格品仓库记录表输入输出对象
|
|
/// </summary>
|
|
public class WmOneTimeRecordDto
|
|
{
|
|
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; }
|
|
}
|
|
/// <summary>
|
|
/// 工艺路线-一次合格 库存变动表输入输出对象
|
|
/// </summary>
|
|
public class WmOneTimeRecordGenerateDto
|
|
{
|
|
// 指令参数 0- 全部生成 1-部分生成 2...
|
|
public int? ActionType { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
}
|
|
}
|