重新生成实体类

This commit is contained in:
2023-05-18 18:15:38 +08:00
parent 82c94d9707
commit 3033b9c66e
347 changed files with 36999 additions and 54700 deletions

View File

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