using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { /// /// 生产提报输入参数 /// public class PrdReportCrInput { /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? create_time { get; set; } /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time { get; set; } /// /// Desc:扩展字段 /// Default: /// Nullable:True /// public string extras { get; set; } /// /// Desc:备注 /// Default:NULL::character varying /// Nullable:True /// public string remark { get; set; } /// /// Desc:创建用户 /// Default:NULL::character varying /// Nullable:True /// public string create_id { get; set; } /// /// Desc:修改用户 /// Default:NULL::character varying /// Nullable:True /// public string modify_id { get; set; } /// /// Desc:生产任务Id /// Default:NULL::character varying /// Nullable:True /// public string icmo_id { get; set; } /// /// Desc:生产数量 /// Default: /// Nullable:True /// public int prd_qty { get; set; } /// /// Desc:已报工数量 /// Default: /// Nullable:True /// public int reported_work_qty { get; set; } /// /// Desc:提报数量 /// Default: /// Nullable:True /// public int reported_qty { get; set; } /// /// Desc:生产任务编码 /// Default: /// Nullable:True /// public string mo_task_code { get; set; } /// /// renwu di /// public string mo_task_id { get; set; } /// /// Desc:生产任务量 /// Default: /// Nullable:True /// public int icmo_qty { get; set; } } }