You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

148 lines
4.2 KiB

using System;
namespace Leit.Model
{
/// <summary>
/// 数据表实体类:LabelTemplateDetail
/// </summary>
[Serializable()]
public class LabelTemplateDetail :EntityBase<LabelTemplateDetail>
{
//当前代码为系统自动生成
/// <summary>
/// Int32:
/// </summary>
public Int32 PlantNr {get;set;}
/// <summary>
/// String:
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public String LabelTemplateId {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 Pos {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 X {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 Y {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 Height {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 Width {get;set;}
/// <summary>
/// String:
/// </summary>
public String LabelItemType {get;set;}
/// <summary>
/// Boolean:
/// </summary>
public Boolean ValueParseToggle {get;set;}
/// <summary>
/// String:
/// </summary>
public String LabelItemValue {get;set;}
/// <summary>
/// String:
/// </summary>
public String LabelItemPen {get;set;}
/// <summary>
/// Boolean:
/// </summary>
public Boolean LabelItemFilled {get;set;}
/// <summary>
/// String:
/// </summary>
public String LabelItemFont {get;set;}
/// <summary>
/// Boolean:
/// </summary>
public Boolean ShowBarcodeText {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 LabelItemPara1 {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 LabelItemPara2 {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 LabelItemPara3 {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 LabelItemPara4 {get;set;}
/// <summary>
/// DateTime:
/// </summary>
public DateTime? LastModify {get;set;}
/// <summary>
/// String:
/// </summary>
public String LastUser {get;set;}
/// <summary>
/// DateTime:
/// </summary>
public DateTime? CreateTime {get;set;}
/// <summary>
/// String:
/// </summary>
public String PreviewValue {get;set;}
}
}