50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.BasicData.Entities
|
|
{
|
|
///<summary>
|
|
///嵌套规格子表标签模板
|
|
///</summary>
|
|
[SugarTable("bas_packaging_specifications_label")]
|
|
public partial class 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;}
|
|
|
|
}
|
|
}
|