using System; using System.Linq; using System.Text; using SqlSugar; namespace Tnb.EquipMgr.Entities { /// ///模具保养规则 /// [SugarTable("tool_mold_maintain_rule")] public partial class ToolMoldMaintainRule { public ToolMoldMaintainRule(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} /// /// Desc:保养方式 /// Default:NULL::character varying /// Nullable:True /// public string? mode {get;set;} /// /// Desc:保养起止日期 /// Default:NULL::character varying /// Nullable:True /// public string? startandend_date {get;set;} /// /// Desc:保养周期 /// Default: /// Nullable:True /// public int? cycle {get;set;} /// /// Desc:创建人 /// Default:NULL::character varying /// Nullable:True /// public string? create_id {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? create_time {get;set;} /// /// Desc:修改人 /// Default:NULL::character varying /// Nullable:True /// public string? modify_id {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time {get;set;} } }