diff --git a/ZR.Model/MES/wms/Dto/WmPolishRecordDto.cs b/ZR.Model/MES/wms/Dto/WmPolishRecordDto.cs index 8352a7fd..1dc744ed 100644 --- a/ZR.Model/MES/wms/Dto/WmPolishRecordDto.cs +++ b/ZR.Model/MES/wms/Dto/WmPolishRecordDto.cs @@ -53,4 +53,18 @@ namespace ZR.Model.MES.wms.Dto public DateTime? UpdatedTime { get; set; } } + /// + /// 工艺路线-抛光 库存变动表输入输出对象 + /// + public class WmPolishRecordGenerateDto + { + // 指令参数 0- 全部生成 1-部分生成 2... + public int? ActionType { get; set; } + + public string Partnumber { get; set; } + + public DateTime? StartTime { get; set; } + + public DateTime? EndTime { get; set; } + } }