212 lines
6.9 KiB
C#
212 lines
6.9 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.Finance.Running.Interface
|
|
{
|
|
#region T_DEPOSITREFUNDDETAIL_AH IDEPOSITREFUNDDETAIL_AH 接口
|
|
/// <summary>
|
|
/// T_DEPOSITREFUNDDETAIL_AH 接口
|
|
/// </summary>
|
|
public interface IDEPOSITREFUNDDETAIL_AH
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? DEPOSITREFUNDDETAIL_AH_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string DEPOSITREFUNDDETAIL_AH_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
System.Int32? FINANCEPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 总表内码
|
|
/// </summary>
|
|
System.Int32? DEPOSITREFUND_AH_ID { get; set; }
|
|
/// <summary>
|
|
/// 经济事项
|
|
/// </summary>
|
|
System.String ECONOMIC_MATTERS { get; set; }
|
|
/// <summary>
|
|
/// 收款单位
|
|
/// </summary>
|
|
System.String PAYEE { get; set; }
|
|
/// <summary>
|
|
/// 开户银行
|
|
/// </summary>
|
|
System.String BANK_NAME { get; set; }
|
|
/// <summary>
|
|
/// 开户账户
|
|
/// </summary>
|
|
System.String BANK_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 退付金额(小写)
|
|
/// </summary>
|
|
System.Double? AMOUNT_LOWER { get; set; }
|
|
/// <summary>
|
|
/// 凭证号
|
|
/// </summary>
|
|
System.String VOUCHER_NO { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
System.String REMARK { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_DEPOSITREFUNDDETAIL_AH IModifyDEPOSITREFUNDDETAIL_AH 接口
|
|
/// <summary>
|
|
/// T_DEPOSITREFUNDDETAIL_AH 接口
|
|
/// </summary>
|
|
public interface IModifyDEPOSITREFUNDDETAIL_AH
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DEPOSITREFUNDDETAIL_AH_ID { get; set; }
|
|
/// <summary>
|
|
/// 流程内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FINANCEPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 总表内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DEPOSITREFUND_AH_ID { get; set; }
|
|
/// <summary>
|
|
/// 经济事项 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ECONOMIC_MATTERS { get; set; }
|
|
/// <summary>
|
|
/// 收款单位 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYEE { get; set; }
|
|
/// <summary>
|
|
/// 开户银行 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BANK_NAME { get; set; }
|
|
/// <summary>
|
|
/// 开户账户 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BANK_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 退付金额(小写) 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_AMOUNT_LOWER { get; set; }
|
|
/// <summary>
|
|
/// 凭证号 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_VOUCHER_NO { get; set; }
|
|
/// <summary>
|
|
/// 备注 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_REMARK { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_DEPOSITREFUNDDETAIL_AH 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_DEPOSITREFUNDDETAIL_AH_保证金退付明细表 的字段类
|
|
/// </summary>
|
|
public class TableSchema_DEPOSITREFUNDDETAIL_AH
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_depositrefunddetail_ah";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_DEPOSITREFUNDDETAIL_AH";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "保证金退付明细表";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "DEPOSITREFUNDDETAIL_AH_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string DEPOSITREFUNDDETAIL_AH_ID = "DEPOSITREFUNDDETAIL_AH_ID";
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
public const string FINANCEPROINST_ID = "FINANCEPROINST_ID";
|
|
/// <summary>
|
|
/// 总表内码
|
|
/// </summary>
|
|
public const string DEPOSITREFUND_AH_ID = "DEPOSITREFUND_AH_ID";
|
|
/// <summary>
|
|
/// 经济事项
|
|
/// </summary>
|
|
public const string ECONOMIC_MATTERS = "ECONOMIC_MATTERS";
|
|
/// <summary>
|
|
/// 收款单位
|
|
/// </summary>
|
|
public const string PAYEE = "PAYEE";
|
|
/// <summary>
|
|
/// 开户银行
|
|
/// </summary>
|
|
public const string BANK_NAME = "BANK_NAME";
|
|
/// <summary>
|
|
/// 开户账户
|
|
/// </summary>
|
|
public const string BANK_ACCOUNT = "BANK_ACCOUNT";
|
|
/// <summary>
|
|
/// 退付金额(小写)
|
|
/// </summary>
|
|
public const string AMOUNT_LOWER = "AMOUNT_LOWER";
|
|
/// <summary>
|
|
/// 凭证号
|
|
/// </summary>
|
|
public const string VOUCHER_NO = "VOUCHER_NO";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string REMARK = "REMARK";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_DEPOSITREFUNDDETAIL_AH_ID = "内码";
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
public const string Comment_FINANCEPROINST_ID = "流程内码";
|
|
/// <summary>
|
|
/// 总表内码
|
|
/// </summary>
|
|
public const string Comment_DEPOSITREFUND_AH_ID = "总表内码";
|
|
/// <summary>
|
|
/// 经济事项
|
|
/// </summary>
|
|
public const string Comment_ECONOMIC_MATTERS = "经济事项";
|
|
/// <summary>
|
|
/// 收款单位
|
|
/// </summary>
|
|
public const string Comment_PAYEE = "收款单位";
|
|
/// <summary>
|
|
/// 开户银行
|
|
/// </summary>
|
|
public const string Comment_BANK_NAME = "开户银行";
|
|
/// <summary>
|
|
/// 开户账户
|
|
/// </summary>
|
|
public const string Comment_BANK_ACCOUNT = "开户账户";
|
|
/// <summary>
|
|
/// 退付金额(小写)
|
|
/// </summary>
|
|
public const string Comment_AMOUNT_LOWER = "退付金额(小写)";
|
|
/// <summary>
|
|
/// 凭证号
|
|
/// </summary>
|
|
public const string Comment_VOUCHER_NO = "凭证号";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string Comment_REMARK = "备注";
|
|
}
|
|
#endregion
|
|
}
|