180 lines
5.7 KiB
C#
180 lines
5.7 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.Finance.Running.Interface
|
|
{
|
|
#region T_TRANSFERBILL_AH ITRANSFERBILL_AH 接口
|
|
/// <summary>
|
|
/// T_TRANSFERBILL_AH 接口
|
|
/// </summary>
|
|
public interface ITRANSFERBILL_AH
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? TRANSFERBILL_AH_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string TRANSFERBILL_AH_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
System.Int32? FINANCEPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 单位名称
|
|
/// </summary>
|
|
System.String UNIT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 开户银行
|
|
/// </summary>
|
|
System.String BANK_NAME { get; set; }
|
|
/// <summary>
|
|
/// 开户账户
|
|
/// </summary>
|
|
System.String BANK_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 转账金额
|
|
/// </summary>
|
|
System.Double? TRANSFER_AMOUNT { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
System.String TRANSFERBILL_AH_DESC { get; set; }
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
System.DateTime? OPERATE_DATE { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_TRANSFERBILL_AH IModifyTRANSFERBILL_AH 接口
|
|
/// <summary>
|
|
/// T_TRANSFERBILL_AH 接口
|
|
/// </summary>
|
|
public interface IModifyTRANSFERBILL_AH
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TRANSFERBILL_AH_ID { get; set; }
|
|
/// <summary>
|
|
/// 流程内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_FINANCEPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 单位名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_UNIT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 开户银行 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BANK_NAME { get; set; }
|
|
/// <summary>
|
|
/// 开户账户 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BANK_ACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 转账金额 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TRANSFER_AMOUNT { get; set; }
|
|
/// <summary>
|
|
/// 备注 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_TRANSFERBILL_AH_DESC { get; set; }
|
|
/// <summary>
|
|
/// 操作时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OPERATE_DATE { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_TRANSFERBILL_AH 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_TRANSFERBILL_AH_转账单 的字段类
|
|
/// </summary>
|
|
public class TableSchema_TRANSFERBILL_AH
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_transferbill_ah";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_TRANSFERBILL_AH";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "转账单";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "TRANSFERBILL_AH_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string TRANSFERBILL_AH_ID = "TRANSFERBILL_AH_ID";
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
public const string FINANCEPROINST_ID = "FINANCEPROINST_ID";
|
|
/// <summary>
|
|
/// 单位名称
|
|
/// </summary>
|
|
public const string UNIT_NAME = "UNIT_NAME";
|
|
/// <summary>
|
|
/// 开户银行
|
|
/// </summary>
|
|
public const string BANK_NAME = "BANK_NAME";
|
|
/// <summary>
|
|
/// 开户账户
|
|
/// </summary>
|
|
public const string BANK_ACCOUNT = "BANK_ACCOUNT";
|
|
/// <summary>
|
|
/// 转账金额
|
|
/// </summary>
|
|
public const string TRANSFER_AMOUNT = "TRANSFER_AMOUNT";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string TRANSFERBILL_AH_DESC = "TRANSFERBILL_AH_DESC";
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public const string OPERATE_DATE = "OPERATE_DATE";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_TRANSFERBILL_AH_ID = "内码";
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
public const string Comment_FINANCEPROINST_ID = "流程内码";
|
|
/// <summary>
|
|
/// 单位名称
|
|
/// </summary>
|
|
public const string Comment_UNIT_NAME = "单位名称";
|
|
/// <summary>
|
|
/// 开户银行
|
|
/// </summary>
|
|
public const string Comment_BANK_NAME = "开户银行";
|
|
/// <summary>
|
|
/// 开户账户
|
|
/// </summary>
|
|
public const string Comment_BANK_ACCOUNT = "开户账户";
|
|
/// <summary>
|
|
/// 转账金额
|
|
/// </summary>
|
|
public const string Comment_TRANSFER_AMOUNT = "转账金额";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public const string Comment_TRANSFERBILL_AH_DESC = "备注";
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public const string Comment_OPERATE_DATE = "操作时间";
|
|
}
|
|
#endregion
|
|
}
|