This commit is contained in:
2025-03-21 16:02:46 +08:00
parent f43579ef71
commit e78a6a0356

View File

@@ -53,4 +53,18 @@ namespace ZR.Model.MES.wms.Dto
public DateTime? UpdatedTime { get; set; }
}
/// <summary>
/// 工艺路线-抛光 库存变动表输入输出对象
/// </summary>
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; }
}
}