重新生成Entity文件

This commit is contained in:
2023-05-17 13:58:01 +08:00
parent 408bbd8789
commit 99b65418e8
216 changed files with 28772 additions and 2470 deletions

View File

@@ -0,0 +1,70 @@
using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
///<summary>
///工单与产线关联关系
///</summary>
[SugarTable("prd_mo_line")]
public partial class PrdMoLine
{
public PrdMoLine(){
}
/// <summary>
/// Desc:编号
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public string id {get;set;} = SnowflakeIdHelper.NextId();
/// <summary>
/// Desc:工单Id
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string? mo_id {get;set;}
/// <summary>
/// Desc:产线Id
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string? line_id {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;}
}
}