using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities { /// ///批控管料备料工具 /// [SugarTable("prd_station_prepare_tool")] public partial class PrdStationPrepareTool { public PrdStationPrepareTool(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:所属组织 /// Default:NULL::character varying /// Nullable:True /// public string? org_id {get;set;} /// /// Desc:工具类型代码 /// Default: /// Nullable:False /// public string tool_type_code {get;set;} = string.Empty; /// /// Desc:模型代码 /// Default: /// Nullable:False /// public string model_code {get;set;} = string.Empty; /// /// Desc:工具代码 /// Default: /// Nullable:False /// public string tool_code {get;set;} = string.Empty; /// /// Desc:工单代码 /// Default: /// Nullable:False /// public string mo_code {get;set;} = string.Empty; /// /// Desc:产品类型代码 /// Default: /// Nullable:False /// public string category_code {get;set;} = string.Empty; /// /// Desc:产品代码 /// Default: /// Nullable:False /// public string item_code {get;set;} = string.Empty; /// /// Desc:工艺路线代码 /// Default: /// Nullable:False /// public string route_code {get;set;} = string.Empty; /// /// Desc:工艺路线版本 /// Default: /// Nullable:False /// public string route_version {get;set;} = string.Empty; /// /// Desc:工序代码 /// Default: /// Nullable:False /// public string process_code {get;set;} = string.Empty; /// /// Desc:岗位代码 /// Default: /// Nullable:False /// public string station_code {get;set;} = string.Empty; /// /// Desc:时间戳 /// Default:NULL::character varying /// Nullable:True /// public string? time_stamp {get;set;} /// /// Desc:创建用户 /// Default:NULL::character varying /// Nullable:True /// public string? create_id {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? create_time {get;set;} /// /// Desc:修改用户 /// Default:NULL::character varying /// Nullable:True /// public string? modify_id {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time {get;set;} /// /// Desc:扩展字段 /// Default: /// Nullable:True /// public string? extras {get;set;} } }