| | |
| | | |
| | | namespace Tiger.Model |
| | | { |
| | | /// <summary> |
| | | /// 实体:标签模板变量 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("标签模板变量")] |
| | | [Serializable] |
| | | [SugarTable("BAS_LABEL_VAR")] |
| | | public class BAS_LABEL_VAR : DbEntityWithAuth |
| | | { |
| | | #region 构造函数 |
| | | /// <summary> |
| | | /// 实体:标签模板变量 |
| | | /// </summary> |
| | | public BAS_LABEL_VAR() {} |
| | | #endregion |
| | | /// <summary> |
| | | /// 实体:标签模板变量 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("标签模板变量")] |
| | | [Serializable] |
| | | [SugarTable("BAS_LABEL_VAR")] |
| | | public class BAS_LABEL_VAR : DbEntityWithAuth |
| | | { |
| | | #region 构造函数 |
| | | /// <summary> |
| | | /// 实体:标签模板变量 |
| | | /// </summary> |
| | | public BAS_LABEL_VAR() { } |
| | | #endregion |
| | | |
| | | #region 公共属性 |
| | | /// <summary> |
| | | /// 标签模板ID |
| | | /// </summary> |
| | | [DisplayName("标签模板ID")] |
| | | public string LABEL_ID { get; set; } |
| | | /// <summary> |
| | | /// 变量名 |
| | | /// </summary> |
| | | [DisplayName("变量名")] |
| | | public string VAR_NAME { get; set; } |
| | | /// <summary> |
| | | /// 变量类型(0Constant常量|1ProcessVariable过程变量|2DateVariable日期变量|3CustomVariable自定义变量) |
| | | /// </summary> |
| | | [DisplayName("变量类型(0Constant常量|1ProcessVariable过程变量|2DateVariable日期变量|3CustomVariable自定义变量)")] |
| | | public int VAR_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 变量值 |
| | | /// </summary> |
| | | [DisplayName("变量值")] |
| | | public string VAR_VALUE { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #region 公共属性 |
| | | /// <summary> |
| | | /// 标签模板ID |
| | | /// </summary> |
| | | [DisplayName("标签模板ID")] |
| | | public string LABEL_ID { get; set; } |
| | | /// <summary> |
| | | /// 变量名 |
| | | /// </summary> |
| | | [DisplayName("变量名")] |
| | | public string VAR_NAME { get; set; } |
| | | /// <summary> |
| | | /// 变量类型(0Constant常量|1ProcessVariable过程变量|2DateVariable日期变量|3CustomVariable自定义变量|4BarcodeGenerate条码生成) |
| | | /// </summary> |
| | | [DisplayName("变量类型(0Constant常量|1ProcessVariable过程变量|2DateVariable日期变量|3CustomVariable自定义变量|4BarcodeGenerate条码生成)")] |
| | | public int VAR_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 变量值 |
| | | /// </summary> |
| | | [DisplayName("变量值")] |
| | | public string VAR_VALUE { get; set; } |
| | | /// <summary> |
| | | /// 条码生成规则 |
| | | /// </summary> |
| | | [DisplayName("条码生成规则")] |
| | | public string BARCODE_RULE { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |
| | | #region 虚拟属性 |
| | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string FieldName { get; set; } |
| | | */ |
| | | /// <summary> |
| | | /// 返回的变量值 |
| | | /// </summary> |
| | | /// <summary> |
| | | /// 返回的变量值 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string Value { get; set; } |
| | | #endregion |
| | |
| | | */ |
| | | |
| | | /// <summary> |
| | | /// 枚举:变量类型(0Constant常量|1ProcessVariable过程变量|2DateVariable日期变量|3CustomVariable自定义变量) |
| | | /// 枚举:变量类型(0Constant常量|1ProcessVariable过程变量|2DateVariable日期变量|3CustomVariable自定义变量|4BarcodeGenerate条码生成) |
| | | /// </summary> |
| | | public enum VAR_TYPEs |
| | | { |
| | | [Description("常量")] |
| | | Constant = 0, |
| | | [Description("过程变量")] |
| | | ProcessVariable = 1, |
| | | [Description("日期变量")] |
| | | DateVariable = 2, |
| | | [Description("自定义变量")] |
| | | CustomVariable = 3, |
| | | } |
| | | #endregion |
| | | { |
| | | [Description("常量")] |
| | | Constant = 0, |
| | | [Description("过程变量")] |
| | | ProcessVariable = 1, |
| | | [Description("日期变量")] |
| | | DateVariable = 2, |
| | | [Description("自定义变量")] |
| | | CustomVariable = 3, |
| | | [Description("条码生成")] |
| | | BarcodeGenerate = 4, |
| | | } |
| | | #endregion |
| | | |
| | | #region 公共方法 |
| | | #region 公共方法 |
| | | |
| | | #endregion |
| | | #endregion |
| | | |
| | | }//endClass |
| | | }//endClass |
| | | } |