using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities { /// ///TODO /// [SugarTable("eqp_maintain_record_detail")] public partial class EqpMaintainRecordDetail { public EqpMaintainRecordDetail(){ } /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime create_time {get;set;} /// /// Desc:创建用户 /// Default: /// Nullable:True /// public string? create_id {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time {get;set;} /// /// Desc:修改用户 /// Default: /// Nullable:True /// public string? modify_id {get;set;} /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:TODO /// Default: /// Nullable:True /// public string? maintain_record_id {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? maintain_item_id {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? item_code {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? item_name {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int maintain_type {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? maintain_content {get;set;} /// /// Desc:描述 /// Default: /// Nullable:True /// public string? descrip {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? maintain_result {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? result {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? remark {get;set;} /// /// Desc:排序 /// Default: /// Nullable:False /// public int ordinal {get;set;} /// /// Desc:是否启用 /// Default: /// Nullable:False /// public int enabled {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend01 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend02 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend03 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend04 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend05 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend06 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend07 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend08 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend09 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? extend10 {get;set;} /// /// Desc:删除用户 /// Default: /// Nullable:True /// public string? delete_id {get;set;} /// /// Desc:删除时间 /// Default: /// Nullable:True /// public DateTime? delete_time {get;set;} /// /// Desc:删除标志 /// Default: /// Nullable:False /// public short deleted {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? confirm_reason {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? confirm_result {get;set;} } }