2025-03-27 15:05:14 +08:00

756 lines
26 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Finance.Running.Interface
{
#region T_COSTPLANBILL ICOSTPLANBILL
/// <summary>
/// T_COSTPLANBILL 接口
/// </summary>
public interface ICOSTPLANBILL
{
/// <summary>
/// 内码
/// </summary>
System.Int32? COSTPLANBILL_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string COSTPLANBILL_ID_Encrypt { get; set; }
/// <summary>
/// 项目内码
/// </summary>
System.Int32? FINANCEPROINST_ID { get; set; }
/// <summary>
/// 报销编码
/// </summary>
System.String COSTPLANBILL_CODE { get; set; }
/// <summary>
/// 财务类型
/// </summary>
System.Int16? COSTPLANBILL_TYPE { get; set; }
/// <summary>
/// 单据状态
/// </summary>
System.Int16? COSTPLANBILL_STATE { get; set; }
/// <summary>
/// 作废人员
/// </summary>
System.String OBSOLETE_PERSON { get; set; }
/// <summary>
/// 作废时间
/// </summary>
System.DateTime? OBSOLETE_DATE { get; set; }
/// <summary>
/// 报销部门
/// </summary>
System.String DEPARTMENT_NAME { get; set; }
/// <summary>
/// 申请服务区
/// </summary>
System.String SERVERPATH_NAME { get; set; }
/// <summary>
/// 报销时间
/// </summary>
System.DateTime? COSTPLANBILL_DATE { get; set; }
/// <summary>
/// 业务名称
/// </summary>
System.String COSTPLANBILL_NAME { get; set; }
/// <summary>
/// 申请原因
/// </summary>
System.String APPLICATIONREASON { get; set; }
/// <summary>
/// 预算情况
/// </summary>
System.Int16? BUDGETSITUATION { get; set; }
/// <summary>
/// 车号
/// </summary>
System.String CARDCODE { get; set; }
/// <summary>
/// 上次保养时间
/// </summary>
System.DateTime? LASTMAINTENANCE_DATE { get; set; }
/// <summary>
/// 上次行驶里程
/// </summary>
System.Double? LAST_MILEAGE { get; set; }
/// <summary>
/// 本次保养时间
/// </summary>
System.DateTime? MAINTENANCE_DATE { get; set; }
/// <summary>
/// 本次行驶里程
/// </summary>
System.Double? MILEAGE { get; set; }
/// <summary>
/// 上次剩余预算
/// </summary>
System.Double? LASTSURPLUS_BUDGET { get; set; }
/// <summary>
/// 本次剩余预算
/// </summary>
System.Double? SURPLUS_BUDGET { get; set; }
/// <summary>
/// 上月总电量
/// </summary>
System.Double? LASTTOTAL_ELECTRICITY { get; set; }
/// <summary>
/// 单价
/// </summary>
System.Int64? LASTTOTAL_PRICR { get; set; }
/// <summary>
/// 本月总电量
/// </summary>
System.Double? TOTAL_ELECTRICITY { get; set; }
/// <summary>
/// 单价
/// </summary>
System.Double? TOTAL_PRICR { get; set; }
/// <summary>
/// 上月总水量
/// </summary>
System.Double? LASTTOTAL_WATER { get; set; }
/// <summary>
/// 单价
/// </summary>
System.Double? LASTTOTAL_WATERPRICE { get; set; }
/// <summary>
/// 本月总水量
/// </summary>
System.Double? TOTAL_WATER { get; set; }
/// <summary>
/// 单价
/// </summary>
System.Double? TOTAL_WATERPRICE { get; set; }
/// <summary>
/// 本月损耗
/// </summary>
System.Double? ELECTRICITY_LOSS { get; set; }
/// <summary>
/// 计划金额
/// </summary>
System.Double? PAYMENT_LOWER { get; set; }
/// <summary>
/// 计划金额大写
/// </summary>
System.String PAYMENT_CAP { get; set; }
/// <summary>
/// 审核金额
/// </summary>
System.Double? AUDITAMOUNT_LOWER { get; set; }
/// <summary>
/// 审核金额大写
/// </summary>
System.String AUDITAMOUNT_CAP { get; set; }
/// <summary>
/// 打印次数
/// </summary>
System.Int16? PRINT_COUNT { 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 RECEIVABLES_NAME { get; set; }
/// <summary>
/// 联系人
/// </summary>
System.String CONTACTS { get; set; }
/// <summary>
/// 联系电话
/// </summary>
System.String CONTACTS_TEL { get; set; }
/// <summary>
/// 收款人账号
/// </summary>
System.String RECEIVABLES_NUM { get; set; }
/// <summary>
/// 开户行名
/// </summary>
System.String BANK_NAME { get; set; }
/// <summary>
/// 收款联网行号
/// </summary>
System.String BANK_CODE { get; set; }
/// <summary>
/// 备注
/// </summary>
System.String COSTPLANBILL_DESC { get; set; }
}
#endregion
#region T_COSTPLANBILL IModifyCOSTPLANBILL
/// <summary>
/// T_COSTPLANBILL 接口
/// </summary>
public interface IModifyCOSTPLANBILL
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_ID { get; set; }
/// <summary>
/// 项目内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_FINANCEPROINST_ID { get; set; }
/// <summary>
/// 报销编码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_CODE { get; set; }
/// <summary>
/// 财务类型 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_TYPE { get; set; }
/// <summary>
/// 单据状态 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_STATE { get; set; }
/// <summary>
/// 作废人员 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OBSOLETE_PERSON { get; set; }
/// <summary>
/// 作废时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OBSOLETE_DATE { get; set; }
/// <summary>
/// 报销部门 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_DEPARTMENT_NAME { get; set; }
/// <summary>
/// 申请服务区 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SERVERPATH_NAME { get; set; }
/// <summary>
/// 报销时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_DATE { get; set; }
/// <summary>
/// 业务名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_NAME { get; set; }
/// <summary>
/// 申请原因 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_APPLICATIONREASON { get; set; }
/// <summary>
/// 预算情况 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BUDGETSITUATION { get; set; }
/// <summary>
/// 车号 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CARDCODE { get; set; }
/// <summary>
/// 上次保养时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTMAINTENANCE_DATE { get; set; }
/// <summary>
/// 上次行驶里程 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LAST_MILEAGE { get; set; }
/// <summary>
/// 本次保养时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MAINTENANCE_DATE { get; set; }
/// <summary>
/// 本次行驶里程 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_MILEAGE { get; set; }
/// <summary>
/// 上次剩余预算 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTSURPLUS_BUDGET { get; set; }
/// <summary>
/// 本次剩余预算 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SURPLUS_BUDGET { get; set; }
/// <summary>
/// 上月总电量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTTOTAL_ELECTRICITY { get; set; }
/// <summary>
/// 单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTTOTAL_PRICR { get; set; }
/// <summary>
/// 本月总电量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TOTAL_ELECTRICITY { get; set; }
/// <summary>
/// 单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TOTAL_PRICR { get; set; }
/// <summary>
/// 上月总水量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTTOTAL_WATER { get; set; }
/// <summary>
/// 单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTTOTAL_WATERPRICE { get; set; }
/// <summary>
/// 本月总水量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TOTAL_WATER { get; set; }
/// <summary>
/// 单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TOTAL_WATERPRICE { get; set; }
/// <summary>
/// 本月损耗 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_ELECTRICITY_LOSS { get; set; }
/// <summary>
/// 计划金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_PAYMENT_LOWER { get; set; }
/// <summary>
/// 计划金额大写 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_PAYMENT_CAP { get; set; }
/// <summary>
/// 审核金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUDITAMOUNT_LOWER { get; set; }
/// <summary>
/// 审核金额大写 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_AUDITAMOUNT_CAP { get; set; }
/// <summary>
/// 打印次数 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_PRINT_COUNT { 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_RECEIVABLES_NAME { get; set; }
/// <summary>
/// 联系人 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONTACTS { get; set; }
/// <summary>
/// 联系电话 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CONTACTS_TEL { get; set; }
/// <summary>
/// 收款人账号 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_RECEIVABLES_NUM { get; set; }
/// <summary>
/// 开户行名 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BANK_NAME { get; set; }
/// <summary>
/// 收款联网行号 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BANK_CODE { get; set; }
/// <summary>
/// 备注 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_DESC { get; set; }
}
#endregion
#region T_COSTPLANBILL
/// <summary>
/// T_COSTPLANBILL_费用计划审批 的字段类
/// </summary>
public class TableSchema_COSTPLANBILL
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_costplanbill";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_COSTPLANBILL";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "费用计划审批";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "COSTPLANBILL_ID";
/// <summary>
/// 内码
/// </summary>
public const string COSTPLANBILL_ID = "COSTPLANBILL_ID";
/// <summary>
/// 项目内码
/// </summary>
public const string FINANCEPROINST_ID = "FINANCEPROINST_ID";
/// <summary>
/// 报销编码
/// </summary>
public const string COSTPLANBILL_CODE = "COSTPLANBILL_CODE";
/// <summary>
/// 财务类型
/// </summary>
public const string COSTPLANBILL_TYPE = "COSTPLANBILL_TYPE";
/// <summary>
/// 单据状态
/// </summary>
public const string COSTPLANBILL_STATE = "COSTPLANBILL_STATE";
/// <summary>
/// 作废人员
/// </summary>
public const string OBSOLETE_PERSON = "OBSOLETE_PERSON";
/// <summary>
/// 作废时间
/// </summary>
public const string OBSOLETE_DATE = "OBSOLETE_DATE";
/// <summary>
/// 报销部门
/// </summary>
public const string DEPARTMENT_NAME = "DEPARTMENT_NAME";
/// <summary>
/// 申请服务区
/// </summary>
public const string SERVERPATH_NAME = "SERVERPATH_NAME";
/// <summary>
/// 报销时间
/// </summary>
public const string COSTPLANBILL_DATE = "COSTPLANBILL_DATE";
/// <summary>
/// 业务名称
/// </summary>
public const string COSTPLANBILL_NAME = "COSTPLANBILL_NAME";
/// <summary>
/// 申请原因
/// </summary>
public const string APPLICATIONREASON = "APPLICATIONREASON";
/// <summary>
/// 预算情况
/// </summary>
public const string BUDGETSITUATION = "BUDGETSITUATION";
/// <summary>
/// 车号
/// </summary>
public const string CARDCODE = "CARDCODE";
/// <summary>
/// 上次保养时间
/// </summary>
public const string LASTMAINTENANCE_DATE = "LASTMAINTENANCE_DATE";
/// <summary>
/// 上次行驶里程
/// </summary>
public const string LAST_MILEAGE = "LAST_MILEAGE";
/// <summary>
/// 本次保养时间
/// </summary>
public const string MAINTENANCE_DATE = "MAINTENANCE_DATE";
/// <summary>
/// 本次行驶里程
/// </summary>
public const string MILEAGE = "MILEAGE";
/// <summary>
/// 上次剩余预算
/// </summary>
public const string LASTSURPLUS_BUDGET = "LASTSURPLUS_BUDGET";
/// <summary>
/// 本次剩余预算
/// </summary>
public const string SURPLUS_BUDGET = "SURPLUS_BUDGET";
/// <summary>
/// 上月总电量
/// </summary>
public const string LASTTOTAL_ELECTRICITY = "LASTTOTAL_ELECTRICITY";
/// <summary>
/// 单价
/// </summary>
public const string LASTTOTAL_PRICR = "LASTTOTAL_PRICR";
/// <summary>
/// 本月总电量
/// </summary>
public const string TOTAL_ELECTRICITY = "TOTAL_ELECTRICITY";
/// <summary>
/// 单价
/// </summary>
public const string TOTAL_PRICR = "TOTAL_PRICR";
/// <summary>
/// 上月总水量
/// </summary>
public const string LASTTOTAL_WATER = "LASTTOTAL_WATER";
/// <summary>
/// 单价
/// </summary>
public const string LASTTOTAL_WATERPRICE = "LASTTOTAL_WATERPRICE";
/// <summary>
/// 本月总水量
/// </summary>
public const string TOTAL_WATER = "TOTAL_WATER";
/// <summary>
/// 单价
/// </summary>
public const string TOTAL_WATERPRICE = "TOTAL_WATERPRICE";
/// <summary>
/// 本月损耗
/// </summary>
public const string ELECTRICITY_LOSS = "ELECTRICITY_LOSS";
/// <summary>
/// 计划金额
/// </summary>
public const string PAYMENT_LOWER = "PAYMENT_LOWER";
/// <summary>
/// 计划金额大写
/// </summary>
public const string PAYMENT_CAP = "PAYMENT_CAP";
/// <summary>
/// 审核金额
/// </summary>
public const string AUDITAMOUNT_LOWER = "AUDITAMOUNT_LOWER";
/// <summary>
/// 审核金额大写
/// </summary>
public const string AUDITAMOUNT_CAP = "AUDITAMOUNT_CAP";
/// <summary>
/// 打印次数
/// </summary>
public const string PRINT_COUNT = "PRINT_COUNT";
/// <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 RECEIVABLES_NAME = "RECEIVABLES_NAME";
/// <summary>
/// 联系人
/// </summary>
public const string CONTACTS = "CONTACTS";
/// <summary>
/// 联系电话
/// </summary>
public const string CONTACTS_TEL = "CONTACTS_TEL";
/// <summary>
/// 收款人账号
/// </summary>
public const string RECEIVABLES_NUM = "RECEIVABLES_NUM";
/// <summary>
/// 开户行名
/// </summary>
public const string BANK_NAME = "BANK_NAME";
/// <summary>
/// 收款联网行号
/// </summary>
public const string BANK_CODE = "BANK_CODE";
/// <summary>
/// 备注
/// </summary>
public const string COSTPLANBILL_DESC = "COSTPLANBILL_DESC";
/// <summary>
/// 内码
/// </summary>
public const string Comment_COSTPLANBILL_ID = "内码";
/// <summary>
/// 项目内码
/// </summary>
public const string Comment_FINANCEPROINST_ID = "项目内码";
/// <summary>
/// 报销编码
/// </summary>
public const string Comment_COSTPLANBILL_CODE = "报销编码";
/// <summary>
/// 财务类型
/// </summary>
public const string Comment_COSTPLANBILL_TYPE = "财务类型";
/// <summary>
/// 单据状态
/// </summary>
public const string Comment_COSTPLANBILL_STATE = "单据状态";
/// <summary>
/// 作废人员
/// </summary>
public const string Comment_OBSOLETE_PERSON = "作废人员";
/// <summary>
/// 作废时间
/// </summary>
public const string Comment_OBSOLETE_DATE = "作废时间";
/// <summary>
/// 报销部门
/// </summary>
public const string Comment_DEPARTMENT_NAME = "报销部门";
/// <summary>
/// 申请服务区
/// </summary>
public const string Comment_SERVERPATH_NAME = "申请服务区";
/// <summary>
/// 报销时间
/// </summary>
public const string Comment_COSTPLANBILL_DATE = "报销时间";
/// <summary>
/// 业务名称
/// </summary>
public const string Comment_COSTPLANBILL_NAME = "业务名称";
/// <summary>
/// 申请原因
/// </summary>
public const string Comment_APPLICATIONREASON = "申请原因";
/// <summary>
/// 预算情况
/// </summary>
public const string Comment_BUDGETSITUATION = "预算情况";
/// <summary>
/// 车号
/// </summary>
public const string Comment_CARDCODE = "车号";
/// <summary>
/// 上次保养时间
/// </summary>
public const string Comment_LASTMAINTENANCE_DATE = "上次保养时间";
/// <summary>
/// 上次行驶里程
/// </summary>
public const string Comment_LAST_MILEAGE = "上次行驶里程";
/// <summary>
/// 本次保养时间
/// </summary>
public const string Comment_MAINTENANCE_DATE = "本次保养时间";
/// <summary>
/// 本次行驶里程
/// </summary>
public const string Comment_MILEAGE = "本次行驶里程";
/// <summary>
/// 上次剩余预算
/// </summary>
public const string Comment_LASTSURPLUS_BUDGET = "上次剩余预算";
/// <summary>
/// 本次剩余预算
/// </summary>
public const string Comment_SURPLUS_BUDGET = "本次剩余预算";
/// <summary>
/// 上月总电量
/// </summary>
public const string Comment_LASTTOTAL_ELECTRICITY = "上月总电量";
/// <summary>
/// 单价
/// </summary>
public const string Comment_LASTTOTAL_PRICR = "单价";
/// <summary>
/// 本月总电量
/// </summary>
public const string Comment_TOTAL_ELECTRICITY = "本月总电量";
/// <summary>
/// 单价
/// </summary>
public const string Comment_TOTAL_PRICR = "单价";
/// <summary>
/// 上月总水量
/// </summary>
public const string Comment_LASTTOTAL_WATER = "上月总水量";
/// <summary>
/// 单价
/// </summary>
public const string Comment_LASTTOTAL_WATERPRICE = "单价";
/// <summary>
/// 本月总水量
/// </summary>
public const string Comment_TOTAL_WATER = "本月总水量";
/// <summary>
/// 单价
/// </summary>
public const string Comment_TOTAL_WATERPRICE = "单价";
/// <summary>
/// 本月损耗
/// </summary>
public const string Comment_ELECTRICITY_LOSS = "本月损耗";
/// <summary>
/// 计划金额
/// </summary>
public const string Comment_PAYMENT_LOWER = "计划金额";
/// <summary>
/// 计划金额大写
/// </summary>
public const string Comment_PAYMENT_CAP = "计划金额大写";
/// <summary>
/// 审核金额
/// </summary>
public const string Comment_AUDITAMOUNT_LOWER = "审核金额";
/// <summary>
/// 审核金额大写
/// </summary>
public const string Comment_AUDITAMOUNT_CAP = "审核金额大写";
/// <summary>
/// 打印次数
/// </summary>
public const string Comment_PRINT_COUNT = "打印次数";
/// <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_RECEIVABLES_NAME = "收款人名";
/// <summary>
/// 联系人
/// </summary>
public const string Comment_CONTACTS = "联系人";
/// <summary>
/// 联系电话
/// </summary>
public const string Comment_CONTACTS_TEL = "联系电话";
/// <summary>
/// 收款人账号
/// </summary>
public const string Comment_RECEIVABLES_NUM = "收款人账号";
/// <summary>
/// 开户行名
/// </summary>
public const string Comment_BANK_NAME = "开户行名";
/// <summary>
/// 收款联网行号
/// </summary>
public const string Comment_BANK_CODE = "收款联网行号";
/// <summary>
/// 备注
/// </summary>
public const string Comment_COSTPLANBILL_DESC = "备注";
}
#endregion
}