using System.Runtime.Serialization; namespace SuperMap.RealEstate.Seller.Running.Interface { #region T_APPROVED IAPPROVED 接口 /// /// T_APPROVED 接口 /// public interface IAPPROVED { /// /// 内码 /// System.Int32? APPROVED_ID { get; set; } /// /// 内码 的加密字符串 /// string APPROVED_ID_Encrypt { get; set; } /// /// 审批类型 /// System.Int16? APPROVED_TYPE { get; set; } /// /// 审批意见 /// System.String APPROVED_INFO { get; set; } /// /// 审批时间 /// System.DateTime? APPROVED_DATE { get; set; } /// /// 审批人员 /// System.String PASSPORT_NAME { get; set; } /// /// 审批人员编码 /// System.Int32? PASSPORT_ID { get; set; } /// /// 业务编码 /// System.Int32? APPLYPROINST_ID { get; set; } /// /// 审批环节 /// System.String APPLYPROINST_TYPE { get; set; } /// /// PROINST_FLAG /// System.String PROINST_FLAG { get; set; } } #endregion #region T_APPROVED IModifyAPPROVED 接口 /// /// T_APPROVED 接口 /// public interface IModifyAPPROVED { /// /// 内码 是否被修改,不建议直接对其赋值操作 /// bool Modify_APPROVED_ID { get; set; } /// /// 审批类型 是否被修改,不建议直接对其赋值操作 /// bool Modify_APPROVED_TYPE { get; set; } /// /// 审批意见 是否被修改,不建议直接对其赋值操作 /// bool Modify_APPROVED_INFO { get; set; } /// /// 审批时间 是否被修改,不建议直接对其赋值操作 /// bool Modify_APPROVED_DATE { get; set; } /// /// 审批人员 是否被修改,不建议直接对其赋值操作 /// bool Modify_PASSPORT_NAME { get; set; } /// /// 审批人员编码 是否被修改,不建议直接对其赋值操作 /// bool Modify_PASSPORT_ID { get; set; } /// /// 业务编码 是否被修改,不建议直接对其赋值操作 /// bool Modify_APPLYPROINST_ID { get; set; } /// /// 审批环节 是否被修改,不建议直接对其赋值操作 /// bool Modify_APPLYPROINST_TYPE { get; set; } /// /// PROINST_FLAG 是否被修改,不建议直接对其赋值操作 /// bool Modify_PROINST_FLAG { get; set; } } #endregion #region T_APPROVED 的表明、字段名、字段描述 /// /// T_APPROVED_审批意见 的字段类 /// public class TableSchema_APPROVED { /// /// 序列名 (用于Oracle主键) /// public const string SequenceName = "seq_approved"; /// /// 表名 /// public const string TableName = "T_APPROVED"; /// /// 表注释 /// public const string Comment_TableName = "审批意见"; /// /// 主键 /// public const string KeyFieldName = "APPROVED_ID"; /// /// 内码 /// public const string APPROVED_ID = "APPROVED_ID"; /// /// 审批类型 /// public const string APPROVED_TYPE = "APPROVED_TYPE"; /// /// 审批意见 /// public const string APPROVED_INFO = "APPROVED_INFO"; /// /// 审批时间 /// public const string APPROVED_DATE = "APPROVED_DATE"; /// /// 审批人员 /// public const string PASSPORT_NAME = "PASSPORT_NAME"; /// /// 审批人员编码 /// public const string PASSPORT_ID = "PASSPORT_ID"; /// /// 业务编码 /// public const string APPLYPROINST_ID = "APPLYPROINST_ID"; /// /// 审批环节 /// public const string APPLYPROINST_TYPE = "APPLYPROINST_TYPE"; /// /// PROINST_FLAG /// public const string PROINST_FLAG = "PROINST_FLAG"; /// /// 内码 /// public const string Comment_APPROVED_ID = "内码"; /// /// 审批类型 /// public const string Comment_APPROVED_TYPE = "审批类型"; /// /// 审批意见 /// public const string Comment_APPROVED_INFO = "审批意见"; /// /// 审批时间 /// public const string Comment_APPROVED_DATE = "审批时间"; /// /// 审批人员 /// public const string Comment_PASSPORT_NAME = "审批人员"; /// /// 审批人员编码 /// public const string Comment_PASSPORT_ID = "审批人员编码"; /// /// 业务编码 /// public const string Comment_APPLYPROINST_ID = "业务编码"; /// /// 审批环节 /// public const string Comment_APPLYPROINST_TYPE = "审批环节"; /// /// PROINST_FLAG /// public const string Comment_PROINST_FLAG = "PROINST_FLAG"; } #endregion }