using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities { /// ///TODO /// [SugarTable("eqp_serious_accident_report")] public partial class EqpSeriousAccidentReport { public EqpSeriousAccidentReport(){ } /// /// 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? accident_code {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? accident_name {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? accident_type {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public DateTime? accident_time {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? organization_units_id {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? oper_department {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? address {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? audit_result {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? audit_user_id {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public DateTime? audit_time {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? audit_content {get;set;} /// /// Desc:描述 /// Default: /// Nullable:True /// public string? descrip {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int accident_level {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int is_complete {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public DateTime? meeting_time {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? meeting_local {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? declare_code {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int ismeeting {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int status {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int accident_itype {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? fault_code {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? estimation {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? injuries {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? loss_location {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? pollution_level {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? audit_charge_user_id {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? check_cycle {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? environ_poll {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? insurance_option {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? is_judgment {get;set;} } }