468 lines
16 KiB
C#
468 lines
16 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.Finance.Running.Interface
|
|
{
|
|
#region T_FUNDAPPLY IFUNDAPPLY 接口
|
|
/// <summary>
|
|
/// T_FUNDAPPLY 接口
|
|
/// </summary>
|
|
public interface IFUNDAPPLY
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? FUNDAPPLY_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string FUNDAPPLY_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 实例内码
|
|
/// </summary>
|
|
System.Int32? FINANCEPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 申请事由
|
|
/// </summary>
|
|
System.String APPLY_EXPLAIN { get; set; }
|
|
/// <summary>
|
|
/// 收款银行
|
|
/// </summary>
|
|
System.String RECIPIENT_BANK { get; set; }
|
|
/// <summary>
|
|
/// 收款账号
|
|
/// </summary>
|
|
System.String RECIPIENT_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 付款银行
|
|
/// </summary>
|
|
System.String PAY_BANK { get; set; }
|
|
/// <summary>
|
|
/// 付款账号
|
|
/// </summary>
|
|
System.String PAY_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 款项内容
|
|
/// </summary>
|
|
System.String FUND_INFO { get; set; }
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
System.String DEPARTMENT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 收款单位
|
|
/// </summary>
|
|
System.String PAYEE_DEPARTMENT { get; set; }
|
|
/// <summary>
|
|
/// 领款人账号
|
|
/// </summary>
|
|
System.String PAYEE_PERSONCARD { get; set; }
|
|
/// <summary>
|
|
/// 领款人
|
|
/// </summary>
|
|
System.String PAYEE_PERSON { get; set; }
|
|
/// <summary>
|
|
/// 领款日期
|
|
/// </summary>
|
|
System.DateTime? PAYEE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 领款用途
|
|
/// </summary>
|
|
System.String PAYEE_USE { get; set; }
|
|
/// <summary>
|
|
/// 付款金额(大写)
|
|
/// </summary>
|
|
System.String PAYMENT_CAP { get; set; }
|
|
/// <summary>
|
|
/// 付款金额(小写)
|
|
/// </summary>
|
|
System.Double? PAYMENT_LOWER { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
System.DateTime? FUNDAPPLY_CREATEDATE { get; set; }
|
|
/// <summary>
|
|
/// 操作人内码
|
|
/// </summary>
|
|
System.Int32? STAFF_ID { get; set; }
|
|
/// <summary>
|
|
/// 操作人名称
|
|
/// </summary>
|
|
System.String STAFF_NAME { get; set; }
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
System.DateTime? OPERATE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
System.String FUNDAPPLY_DESC { get; set; }
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
System.String FUNDAPPLYTYPE { get; set; }
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
System.String PHONE { get; set; }
|
|
/// <summary>
|
|
/// 领款人开户行
|
|
/// </summary>
|
|
System.String RECIPIENT_NUM { get; set; }
|
|
/// <summary>
|
|
/// 开户行联网行号
|
|
/// </summary>
|
|
System.String RECIPIENT_NETWORK { get; set; }
|
|
/// <summary>
|
|
/// 附件张数
|
|
/// </summary>
|
|
System.Int32? ENCLOSURE_NUMBER { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_FUNDAPPLY IModifyFUNDAPPLY 接口
|
|
/// <summary>
|
|
/// T_FUNDAPPLY 接口
|
|
/// </summary>
|
|
public interface IModifyFUNDAPPLY
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FUNDAPPLY_ID { get; set; }
|
|
/// <summary>
|
|
/// 实例内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FINANCEPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 申请事由 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPLY_EXPLAIN { get; set; }
|
|
/// <summary>
|
|
/// 收款银行 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RECIPIENT_BANK { get; set; }
|
|
/// <summary>
|
|
/// 收款账号 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RECIPIENT_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 付款银行 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAY_BANK { get; set; }
|
|
/// <summary>
|
|
/// 付款账号 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAY_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 款项内容 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FUND_INFO { get; set; }
|
|
/// <summary>
|
|
/// 部门名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DEPARTMENT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 收款单位 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYEE_DEPARTMENT { get; set; }
|
|
/// <summary>
|
|
/// 领款人账号 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYEE_PERSONCARD { get; set; }
|
|
/// <summary>
|
|
/// 领款人 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYEE_PERSON { get; set; }
|
|
/// <summary>
|
|
/// 领款日期 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYEE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 领款用途 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYEE_USE { get; set; }
|
|
/// <summary>
|
|
/// 付款金额(大写) 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYMENT_CAP { get; set; }
|
|
/// <summary>
|
|
/// 付款金额(小写) 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PAYMENT_LOWER { get; set; }
|
|
/// <summary>
|
|
/// 创建时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FUNDAPPLY_CREATEDATE { get; set; }
|
|
/// <summary>
|
|
/// 操作人内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STAFF_ID { get; set; }
|
|
/// <summary>
|
|
/// 操作人名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STAFF_NAME { get; set; }
|
|
/// <summary>
|
|
/// 操作时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OPERATE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 备注 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FUNDAPPLY_DESC { get; set; }
|
|
/// <summary>
|
|
/// 支付方式 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FUNDAPPLYTYPE { get; set; }
|
|
/// <summary>
|
|
/// 联系电话 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PHONE { get; set; }
|
|
/// <summary>
|
|
/// 领款人开户行 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RECIPIENT_NUM { get; set; }
|
|
/// <summary>
|
|
/// 开户行联网行号 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RECIPIENT_NETWORK { get; set; }
|
|
/// <summary>
|
|
/// 附件张数 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ENCLOSURE_NUMBER { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_FUNDAPPLY 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_FUNDAPPLY_资金申领 的字段类
|
|
/// </summary>
|
|
public class TableSchema_FUNDAPPLY
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_fundapply";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_FUNDAPPLY";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "资金申领";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "FUNDAPPLY_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string FUNDAPPLY_ID = "FUNDAPPLY_ID";
|
|
/// <summary>
|
|
/// 实例内码
|
|
/// </summary>
|
|
public const string FINANCEPROINST_ID = "FINANCEPROINST_ID";
|
|
/// <summary>
|
|
/// 申请事由
|
|
/// </summary>
|
|
public const string APPLY_EXPLAIN = "APPLY_EXPLAIN";
|
|
/// <summary>
|
|
/// 收款银行
|
|
/// </summary>
|
|
public const string RECIPIENT_BANK = "RECIPIENT_BANK";
|
|
/// <summary>
|
|
/// 收款账号
|
|
/// </summary>
|
|
public const string RECIPIENT_ACCOUNT = "RECIPIENT_ACCOUNT";
|
|
/// <summary>
|
|
/// 付款银行
|
|
/// </summary>
|
|
public const string PAY_BANK = "PAY_BANK";
|
|
/// <summary>
|
|
/// 付款账号
|
|
/// </summary>
|
|
public const string PAY_ACCOUNT = "PAY_ACCOUNT";
|
|
/// <summary>
|
|
/// 款项内容
|
|
/// </summary>
|
|
public const string FUND_INFO = "FUND_INFO";
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
public const string DEPARTMENT_NAME = "DEPARTMENT_NAME";
|
|
/// <summary>
|
|
/// 收款单位
|
|
/// </summary>
|
|
public const string PAYEE_DEPARTMENT = "PAYEE_DEPARTMENT";
|
|
/// <summary>
|
|
/// 领款人账号
|
|
/// </summary>
|
|
public const string PAYEE_PERSONCARD = "PAYEE_PERSONCARD";
|
|
/// <summary>
|
|
/// 领款人
|
|
/// </summary>
|
|
public const string PAYEE_PERSON = "PAYEE_PERSON";
|
|
/// <summary>
|
|
/// 领款日期
|
|
/// </summary>
|
|
public const string PAYEE_DATE = "PAYEE_DATE";
|
|
/// <summary>
|
|
/// 领款用途
|
|
/// </summary>
|
|
public const string PAYEE_USE = "PAYEE_USE";
|
|
/// <summary>
|
|
/// 付款金额(大写)
|
|
/// </summary>
|
|
public const string PAYMENT_CAP = "PAYMENT_CAP";
|
|
/// <summary>
|
|
/// 付款金额(小写)
|
|
/// </summary>
|
|
public const string PAYMENT_LOWER = "PAYMENT_LOWER";
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public const string FUNDAPPLY_CREATEDATE = "FUNDAPPLY_CREATEDATE";
|
|
/// <summary>
|
|
/// 操作人内码
|
|
/// </summary>
|
|
public const string STAFF_ID = "STAFF_ID";
|
|
/// <summary>
|
|
/// 操作人名称
|
|
/// </summary>
|
|
public const string STAFF_NAME = "STAFF_NAME";
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public const string OPERATE_DATE = "OPERATE_DATE";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string FUNDAPPLY_DESC = "FUNDAPPLY_DESC";
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
public const string FUNDAPPLYTYPE = "FUNDAPPLYTYPE";
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
public const string PHONE = "PHONE";
|
|
/// <summary>
|
|
/// 领款人开户行
|
|
/// </summary>
|
|
public const string RECIPIENT_NUM = "RECIPIENT_NUM";
|
|
/// <summary>
|
|
/// 开户行联网行号
|
|
/// </summary>
|
|
public const string RECIPIENT_NETWORK = "RECIPIENT_NETWORK";
|
|
/// <summary>
|
|
/// 附件张数
|
|
/// </summary>
|
|
public const string ENCLOSURE_NUMBER = "ENCLOSURE_NUMBER";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_FUNDAPPLY_ID = "内码";
|
|
/// <summary>
|
|
/// 实例内码
|
|
/// </summary>
|
|
public const string Comment_FINANCEPROINST_ID = "实例内码";
|
|
/// <summary>
|
|
/// 申请事由
|
|
/// </summary>
|
|
public const string Comment_APPLY_EXPLAIN = "申请事由";
|
|
/// <summary>
|
|
/// 收款银行
|
|
/// </summary>
|
|
public const string Comment_RECIPIENT_BANK = "收款银行";
|
|
/// <summary>
|
|
/// 收款账号
|
|
/// </summary>
|
|
public const string Comment_RECIPIENT_ACCOUNT = "收款账号";
|
|
/// <summary>
|
|
/// 付款银行
|
|
/// </summary>
|
|
public const string Comment_PAY_BANK = "付款银行";
|
|
/// <summary>
|
|
/// 付款账号
|
|
/// </summary>
|
|
public const string Comment_PAY_ACCOUNT = "付款账号";
|
|
/// <summary>
|
|
/// 款项内容
|
|
/// </summary>
|
|
public const string Comment_FUND_INFO = "款项内容";
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
public const string Comment_DEPARTMENT_NAME = "部门名称";
|
|
/// <summary>
|
|
/// 收款单位
|
|
/// </summary>
|
|
public const string Comment_PAYEE_DEPARTMENT = "收款单位";
|
|
/// <summary>
|
|
/// 领款人账号
|
|
/// </summary>
|
|
public const string Comment_PAYEE_PERSONCARD = "领款人账号";
|
|
/// <summary>
|
|
/// 领款人
|
|
/// </summary>
|
|
public const string Comment_PAYEE_PERSON = "领款人";
|
|
/// <summary>
|
|
/// 领款日期
|
|
/// </summary>
|
|
public const string Comment_PAYEE_DATE = "领款日期";
|
|
/// <summary>
|
|
/// 领款用途
|
|
/// </summary>
|
|
public const string Comment_PAYEE_USE = "领款用途";
|
|
/// <summary>
|
|
/// 付款金额(大写)
|
|
/// </summary>
|
|
public const string Comment_PAYMENT_CAP = "付款金额(大写)";
|
|
/// <summary>
|
|
/// 付款金额(小写)
|
|
/// </summary>
|
|
public const string Comment_PAYMENT_LOWER = "付款金额(小写)";
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public const string Comment_FUNDAPPLY_CREATEDATE = "创建时间";
|
|
/// <summary>
|
|
/// 操作人内码
|
|
/// </summary>
|
|
public const string Comment_STAFF_ID = "操作人内码";
|
|
/// <summary>
|
|
/// 操作人名称
|
|
/// </summary>
|
|
public const string Comment_STAFF_NAME = "操作人名称";
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public const string Comment_OPERATE_DATE = "操作时间";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string Comment_FUNDAPPLY_DESC = "备注";
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
public const string Comment_FUNDAPPLYTYPE = "支付方式";
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
public const string Comment_PHONE = "联系电话";
|
|
/// <summary>
|
|
/// 领款人开户行
|
|
/// </summary>
|
|
public const string Comment_RECIPIENT_NUM = "领款人开户行";
|
|
/// <summary>
|
|
/// 开户行联网行号
|
|
/// </summary>
|
|
public const string Comment_RECIPIENT_NETWORK = "开户行联网行号";
|
|
/// <summary>
|
|
/// 附件张数
|
|
/// </summary>
|
|
public const string Comment_ENCLOSURE_NUMBER = "附件张数";
|
|
}
|
|
#endregion
|
|
}
|