重新生成实体类

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,7 +1,6 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
using Tnb.Common.Contracts;
namespace Tnb.BasicData.Entities;
@@ -18,61 +17,51 @@ public partial class BasDefect : BaseEntity<string>
/// <summary>
/// 排序
/// </summary>
[SugarColumn(IsNullable = true)]
public long? ordinal { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[SugarColumn(IsNullable = true)]
public string? create_id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? create_time { get; set; }
/// <summary>
/// 修改用户
/// </summary>
[SugarColumn(IsNullable = true)]
public string? modify_id { get; set; }
/// <summary>
/// 修改时间
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? modify_time { get; set; }
/// <summary>
/// 扩展字段
/// </summary>
[SugarColumn(IsNullable = true)]
public string? extras { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(IsNullable = true)]
public string? remark { get; set; }
/// <summary>
/// 次品类型
/// </summary>
[SugarColumn(IsNullable = true)]
public string? defect_type_id { get; set; }
/// <summary>
/// 缺陷代码
/// </summary>
[SugarColumn(IsNullable = true)]
public string? defect_code { get; set; }
/// <summary>
/// 缺陷名称
/// </summary>
[SugarColumn(IsNullable = true)]
public string? defect_name { get; set; }
/// <summary>