using System; //Nhibernate Code Generation Template 1.0 //author:MythXin //blog:www.cnblogs.com/MythXin //Entity Code Generation Template namespace NXWMS.DataAccess.Entity { //打印模板定义表 public class BAS_PRINT_TEMPLATE { /// /// 系统主键 /// public int PRINT_TEMPLATE_ID { get; set; } /// /// NewId主键 /// public string NEWID { get; set; } /// /// 打印模版编码 /// public string PRINT_TEMPLATE_CODE { get; set; } /// /// 打印模版名称 /// public string PRINT_TEMPLATE_NAME { get; set; } /// /// 打印方式编码 /// public int PRINT_MODE { get; set; } /// /// 打印数量 /// public int? PRINT_NUMBER { get; set; } /// /// 是否打印表头 /// public int PRINT_HEADER_FLAG { get; set; } /// /// 是否添加水印 /// public int SHOW_WATERMARK_FLAG { get; set; } /// /// 是否显示LOGO /// public int SHOW_LOGO_FLAG { get; set; } /// /// 数据源类型 /// public int SOURCE_TYPE { get; set; } /// /// 数据源内容 /// public string SOURCE_CONTENT { get; set; } /// /// 数据源名称 /// public string SOURCE_NAME { get; set; } /// /// 数据源编码 /// public string SOURCE_CODE { get; set; } /// /// 描述 /// public string DESCRIBE { get; set; } /// /// 使用标识。0:禁用;1:启用。 /// public int USED_FLAG { get; set; } /// /// 删除标识。0:未删除;1:已删除。 /// public int DEL_FLAG { get; set; } /// /// 创建人 /// public int CREATE_BY { get; set; } /// /// 创建时间 /// public DateTime CREATE_TIME { get; set; } /// /// 最后更新人 /// public int UPDATE_BY { get; set; } /// /// 最后更新时间 /// public DateTime UPDATE_TIME { get; set; } /// /// 数据版本号 /// public int DATA_VERSION { get; set; } /// /// 备用字段1 /// public string REMARKS1 { get; set; } /// /// 备用字段2 /// public string REMARKS2 { get; set; } /// /// 备用字段3 /// public string REMARKS3 { get; set; } /// /// 备用字段4 /// public string REMARKS4 { get; set; } /// /// 备用字段5 /// public string REMARKS5 { get; set; } } }