using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 设备使用车间变更记录 /// [SugarTable("eqp_workshop_change_log")] public partial class EqpWorkshopChangeLog : BaseEntity { public EqpWorkshopChangeLog() { id = SnowflakeIdHelper.NextId(); } /// /// 设备id /// public string equip_id { get; set; } = string.Empty; /// /// 旧车间id /// public string? old_workshop_id { get; set; } /// /// 新车间id /// public string? new_workshop_id { get; set; } /// /// 旧安装地点 /// public string? old_installation_location { get; set; } /// /// 新安装地点 /// public string? new_installation_location { get; set; } /// /// 备注 /// public string? remark { 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? org_id { get; set; } }