From e78a6a0356a79226436bfd8e427e8eb557bba202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AD=A3=E6=98=93?= Date: Fri, 21 Mar 2025 16:02:46 +0800 Subject: [PATCH] 123 --- ZR.Model/MES/wms/Dto/WmPolishRecordDto.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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; } + } }