using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 生产计划表输出参数 /// public class ProductionPlanInfoDto { /// /// 计划类型(1:班组计划 2:月份计划) /// public string PlanType { get; set; } /// /// 计划时间 /// public DateTime PlanTime { get; set; } /// /// 班组类型(白班,晚班) /// public string TeamType { get; set; } /// /// 计划生成数量 /// public int PlanProductionNum { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// Id主键 /// public long Id { get; set; } } }