using System.Runtime.Serialization; namespace SuperMap.RealEstate.ExchangeData.Interface { #region T_FIELDENUM IFIELDENUM 接口 /// /// T_FIELDENUM 接口 /// public interface IFIELDENUM { /// /// 枚举内码 /// System.Int32? FIELDENUM_ID { get; set; } /// /// 枚举内码 的加密字符串 /// string FIELDENUM_ID_Encrypt { get; set; } /// /// 上级枚举 /// System.Int32? FIELDENUM_PID { get; set; } /// /// 控件类型:0:下拉选项;1:文本框 /// System.Int16? FIELDENUM_CONTROLTYPE { get; set; } /// /// 必填:1:是;0:否 /// System.Int16? FIELDENUM_MUST { get; set; } /// /// 允许批量设置:1:是;0:否 /// System.Int16? FIELDENUM_BATCH { get; set; } /// /// 默认值 /// System.String FIELDENUM_INITIALVALUE { get; set; } /// /// 下拉框对应值(通过枚举获取) /// System.Int32? FIELDENUM_OPTION { get; set; } /// /// 枚举索引 /// System.Int32? FIELDENUM_INDEX { get; set; } /// /// 枚举状态 /// System.Int16? FIELDENUM_STATUS { get; set; } /// /// 操作员内码 /// System.Int32? STAFF_ID { get; set; } /// /// 操作人员 /// System.String STAFF_NAME { get; set; } /// /// 操作时间 /// System.DateTime? OPERATE_DATE { get; set; } /// /// 说明 /// System.String FIELDENUM_DESC { get; set; } } #endregion #region T_FIELDENUM IModifyFIELDENUM 接口 /// /// T_FIELDENUM 接口 /// public interface IModifyFIELDENUM { /// /// 枚举内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_ID { get; set; } /// /// 上级枚举 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_PID { get; set; } /// /// 控件类型:0:下拉选项;1:文本框 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_CONTROLTYPE { get; set; } /// /// 必填:1:是;0:否 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_MUST { get; set; } /// /// 允许批量设置:1:是;0:否 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_BATCH { get; set; } /// /// 默认值 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_INITIALVALUE { get; set; } /// /// 下拉框对应值(通过枚举获取) 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_OPTION { get; set; } /// /// 枚举索引 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_INDEX { get; set; } /// /// 枚举状态 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_STATUS { get; set; } /// /// 操作员内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_STAFF_ID { get; set; } /// /// 操作人员 是否被修改,不建议直接对其赋值操作 /// bool Modify_STAFF_NAME { get; set; } /// /// 操作时间 是否被修改,不建议直接对其赋值操作 /// bool Modify_OPERATE_DATE { get; set; } /// /// 说明 是否被修改,不建议直接对其赋值操作 /// bool Modify_FIELDENUM_DESC { get; set; } } #endregion #region T_FIELDENUM 的表明、字段名、字段描述 /// /// T_FIELDENUM_字段枚举 的字段类 /// public class TableSchema_FIELDENUM { /// /// 序列名 (用于Oracle主键) /// public const string SequenceName = "seq_fieldenum"; /// /// 表名 /// public const string TableName = "T_FIELDENUM"; /// /// 表注释 /// public const string Comment_TableName = "字段枚举"; /// /// 主键 /// public const string KeyFieldName = "FIELDENUM_ID"; /// /// 枚举内码 /// public const string FIELDENUM_ID = "FIELDENUM_ID"; /// /// 上级枚举 /// public const string FIELDENUM_PID = "FIELDENUM_PID"; /// /// 控件类型:0:下拉选项;1:文本框 /// public const string FIELDENUM_CONTROLTYPE = "FIELDENUM_CONTROLTYPE"; /// /// 必填:1:是;0:否 /// public const string FIELDENUM_MUST = "FIELDENUM_MUST"; /// /// 允许批量设置:1:是;0:否 /// public const string FIELDENUM_BATCH = "FIELDENUM_BATCH"; /// /// 默认值 /// public const string FIELDENUM_INITIALVALUE = "FIELDENUM_INITIALVALUE"; /// /// 下拉框对应值(通过枚举获取) /// public const string FIELDENUM_OPTION = "FIELDENUM_OPTION"; /// /// 枚举索引 /// public const string FIELDENUM_INDEX = "FIELDENUM_INDEX"; /// /// 枚举状态 /// public const string FIELDENUM_STATUS = "FIELDENUM_STATUS"; /// /// 操作员内码 /// public const string STAFF_ID = "STAFF_ID"; /// /// 操作人员 /// public const string STAFF_NAME = "STAFF_NAME"; /// /// 操作时间 /// public const string OPERATE_DATE = "OPERATE_DATE"; /// /// 说明 /// public const string FIELDENUM_DESC = "FIELDENUM_DESC"; /// /// 枚举内码 /// public const string Comment_FIELDENUM_ID = "枚举内码"; /// /// 上级枚举 /// public const string Comment_FIELDENUM_PID = "上级枚举"; /// /// 控件类型:0:下拉选项;1:文本框 /// public const string Comment_FIELDENUM_CONTROLTYPE = "控件类型:0:下拉选项;1:文本框"; /// /// 必填:1:是;0:否 /// public const string Comment_FIELDENUM_MUST = "必填:1:是;0:否"; /// /// 允许批量设置:1:是;0:否 /// public const string Comment_FIELDENUM_BATCH = "允许批量设置:1:是;0:否"; /// /// 默认值 /// public const string Comment_FIELDENUM_INITIALVALUE = "默认值"; /// /// 下拉框对应值(通过枚举获取) /// public const string Comment_FIELDENUM_OPTION = "下拉框对应值(通过枚举获取)"; /// /// 枚举索引 /// public const string Comment_FIELDENUM_INDEX = "枚举索引"; /// /// 枚举状态 /// public const string Comment_FIELDENUM_STATUS = "枚举状态"; /// /// 操作员内码 /// public const string Comment_STAFF_ID = "操作员内码"; /// /// 操作人员 /// public const string Comment_STAFF_NAME = "操作人员"; /// /// 操作时间 /// public const string Comment_OPERATE_DATE = "操作时间"; /// /// 说明 /// public const string Comment_FIELDENUM_DESC = "说明"; } #endregion }