重新生成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

@@ -1,5 +1,8 @@
using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
using Tnb.Common.Contracts;
namespace Tnb.BasicData.Entities
{
@@ -7,59 +10,68 @@ namespace Tnb.BasicData.Entities
///生产bom子表
///</summary>
[SugarTable("bas_mbom_process")]
public class BasMbomProcess : BaseEntity<string>
public partial class BasMbomProcess
{
public BasMbomProcess()
{
}
public BasMbomProcess(){
/// <summary>
/// Desc:所属组织id
/// Default:
/// Nullable:False
/// </summary>
public string org_id { get; set; }
/// <summary>
/// Desc:生产bomid
/// Default:
/// Nullable:False
/// </summary>
public string mbom_id { get; set; }
}
/// <summary>
/// Desc:编号
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public string id {get;set;} = SnowflakeIdHelper.NextId();
/// <summary>
/// Desc:工序id
/// Default:
/// Nullable:False
/// </summary>
public string process_id { get; set; }
/// <summary>
/// Desc:所属组织
/// Default:
/// Nullable:False
/// </summary>
public string org_id {get;set;} = string.Empty;
/// <summary>
/// Desc:准备时间
/// Default:
/// Nullable:False
/// </summary>
public decimal preparation_time { get; set; }
/// <summary>
/// Desc:生产bomid
/// Default:
/// Nullable:False
/// </summary>
public string mbom_id {get;set;} = string.Empty;
/// <summary>
/// Desc:工序id
/// Default:
/// Nullable:False
/// </summary>
public string process_id {get;set;} = string.Empty;
/// <summary>
/// Desc:工位
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string? station {get;set;}
/// <summary>
/// Desc:准备时间
/// Default:
/// Nullable:False
/// </summary>
public decimal preparation_time {get;set;}
/// <summary>
/// Desc:副产出管控
/// Default:
/// Nullable:False
/// </summary>
public int byproduct_status {get;set;}
/// <summary>
/// Desc:投产方式
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string? production_method {get;set;}
/// <summary>
/// Desc:工位
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string station { get; set; }
/// <summary>
/// Desc:副产出管控 0 不启用 1 启用
/// Default:
/// Nullable:False
/// </summary>
public int byproduct_status { get; set; }
/// <summary>
/// Desc:投产方式
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string production_method {get;set;}
}
}
}