重新生成实体类
This commit is contained in:
@@ -1,49 +1,32 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.BasicData.Entities
|
||||
namespace Tnb.BasicData.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 嵌套规格子表标签模板
|
||||
/// </summary>
|
||||
[SugarTable("bas_packaging_specifications_label")]
|
||||
public partial class BasPackagingSpecificationsLabel : BaseEntity<string>
|
||||
{
|
||||
///<summary>
|
||||
///嵌套规格子表标签模板
|
||||
///</summary>
|
||||
[SugarTable("bas_packaging_specifications_label")]
|
||||
public partial class BasPackagingSpecificationsLabel
|
||||
public BasPackagingSpecificationsLabel()
|
||||
{
|
||||
public BasPackagingSpecificationsLabel(){
|
||||
|
||||
|
||||
}
|
||||
/// <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? packaging_specifications_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:标签模板
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? label_templates {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:是否默认
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? is_default {get;set;}
|
||||
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 嵌套规格
|
||||
/// </summary>
|
||||
public string? packaging_specifications_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标签模板
|
||||
/// </summary>
|
||||
public string? label_templates { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否默认
|
||||
/// </summary>
|
||||
public string? is_default { get; set; }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user