using System; using System.Linq; using System.Text; using SqlSugar; namespace Tnb.ProductionMgr.Entities { /// ///生产提报记录 /// [SugarTable("prd_report")] public partial class PrdReport { public PrdReport(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} /// /// Desc:时间戳 /// Default: /// Nullable:True /// public DateTime? timestamp {get;set;} /// /// 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 icmo_code {get;set;} /// /// Desc:生产任务量 /// Default: /// Nullable:True /// public int? icmo_qty {get;set;} } }