218 lines
6.1 KiB
C#
218 lines
6.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.EquipMgr.Entities
|
|
{
|
|
///<summary>
|
|
///保养项目
|
|
///</summary>
|
|
[SugarTable("eqp_maintain_item")]
|
|
public partial class EqpMaintainItem
|
|
{
|
|
public EqpMaintainItem(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? create_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? create_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:修改时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? modify_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:修改用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? modify_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:编号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
|
|
|
/// <summary>
|
|
/// Desc:设备类型
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? equip_type_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:项目编码
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? item_code {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:项目名称
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? item_name {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:保养类型
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? maintain_type {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:保养内容
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? maintain_content {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:描述
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? descrip {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? remark {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:排序
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? ordinal {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:是否启用
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? enabled {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend01 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend02 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend03 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend04 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend05 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend06 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend07 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend08 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend09 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:TODO
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extend10 {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:删除用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? delete_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:删除时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? delete_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:删除标志
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public short? deleted {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:所属组织
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? org_id {get;set;}
|
|
|
|
}
|
|
}
|