using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// TODO /// [SugarTable("eqp_spot_ins_ratio_record")] public partial class EqpSpotInsRatioRecord : BaseEntity { public EqpSpotInsRatioRecord() { id = SnowflakeIdHelper.NextId(); } /// /// 创建时间 /// public DateTime create_time { get; set; } = DateTime.Now; /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// TODO /// public string? depart_ment { get; set; } /// /// TODO /// public int? year { get; set; } /// /// TODO /// public int? month { get; set; } /// /// TODO /// public int? day { get; set; } /// /// TODO /// public int? spot_plan_num { get; set; } /// /// TODO /// public int? spot_finsh_num { get; set; } /// /// TODO /// public string? spot_percent { get; set; } /// /// TODO /// public string? section_name { get; set; } }