using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 设备登记 /// [SugarTable("eqp_equipment")] public partial class EqpEquipment : BaseEntity { public EqpEquipment() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 设备代码 /// public string code { get; set; } = string.Empty; /// /// 设备名称 /// public string name { get; set; } = string.Empty; /// /// 设备类型id /// public string equip_type_id { get; set; } = string.Empty; /// /// 设备生产日期 /// public string? product_date { get; set; } /// /// 设备生产厂家 /// public string? manufacturer { get; set; } /// /// 使用部门id /// public string? use_department_id { get; set; } /// /// 安装日期 /// public string? install_date { get; set; } /// /// 使用日期 /// public DateTime? use_date { get; set; } /// /// 验收日期 /// public DateTime? accept_date { get; set; } /// /// 管理部门id /// public string? manage_department_id { get; set; } /// /// 设备生命周期 /// public string? life { get; set; } /// /// 技改编码 /// public string? techno_logy_code { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 时间戳 /// public string? timestamp { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 供应商id /// public string? supplier_id { get; set; } /// /// 出厂编码 /// public string? factory_code { get; set; } /// /// 合同/采购单号 /// public string? contract_no { get; set; } /// /// 维保单位 /// public string? maintenance_unit { get; set; } /// /// 维保电话 /// public string? maintenance_phone { get; set; } /// /// 规格型号 /// public string? specification { get; set; } /// /// 安装地点 /// public string? installation_location { get; set; } /// /// 是否成套设备 /// public string is_complete_set { get; set; } = string.Empty; /// /// DCS-ID /// public string? dcs_id { get; set; } /// /// 技术参数 /// public string? technology_parameter { get; set; } /// /// 状态 /// public string? status { get; set; } /// /// 吨位 /// public decimal? tonnage { get; set; } /// /// 设备机台号 /// public string? eqp_machine_num { get; set; } /// /// 模具Id /// public string? mold_id { get; set; } }