重新生成实体类
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user