using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities { /// ///TODO /// [SugarTable("eqp_spot_ins_ratio_record")] public partial class EqpSpotInsRatioRecord { public EqpSpotInsRatioRecord(){ } /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime create_time {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time {get;set;} /// /// Desc:编号 /// Default: /// Nullable:False /// public int id {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? depart_ment {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? year {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? month {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? day {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? spot_plan_num {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public int? spot_finsh_num {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? spot_percent {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? section_name {get;set;} } }