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

500 lines
18 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Finance.Running.Interface
{
#region T_COSTPLANDETILS ICOSTPLANDETILS
/// <summary>
/// T_COSTPLANDETILS 接口
/// </summary>
public interface ICOSTPLANDETILS
{
/// <summary>
/// 内码
/// </summary>
System.Int32? COSTPLANDETILS_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string COSTPLANDETILS_ID_Encrypt { get; set; }
/// <summary>
/// 计划主表内码
/// </summary>
System.Int32? COSTPLANBILL_ID { get; set; }
/// <summary>
/// 项目名称
/// </summary>
System.String COSTPLANBILL_ITEM { get; set; }
/// <summary>
/// 规格/型号
/// </summary>
System.String COSTPLANBILL_RULE { get; set; }
/// <summary>
/// 费用计划单位
/// </summary>
System.String COSTPLAN_UNIT { get; set; }
/// <summary>
/// 费用计划数量
/// </summary>
System.Double? COSTPLAN_COUNT { get; set; }
/// <summary>
/// 费用计划单价
/// </summary>
System.Double? COSTPLAN_PRICE { get; set; }
/// <summary>
/// 费用计划金额
/// </summary>
System.Double? COSTPLAN_AMOUNT { get; set; }
/// <summary>
/// 费用计划时工费
/// </summary>
System.Double? COSTPLAN_HOURPRICE { get; set; }
/// <summary>
/// 费用计划小计
/// </summary>
System.Double? COSTPLAN_HSUBTOTAL { get; set; }
/// <summary>
/// 费用计划备注
/// </summary>
System.String COSTPLAN_DESC { get; set; }
/// <summary>
/// 费用审核单位
/// </summary>
System.String COSTAUDIT_UNIT { get; set; }
/// <summary>
/// 费用审核数量
/// </summary>
System.Double? COSTAUDIT_COUNT { get; set; }
/// <summary>
/// 费用审核单价
/// </summary>
System.Double? COSTAUDIT_PRICE { get; set; }
/// <summary>
/// 费用审核金额
/// </summary>
System.Double? COSTAUDIT_AMOUNT { get; set; }
/// <summary>
/// 费用审核时工费
/// </summary>
System.Double? COSTAUDIT_HOURPRICE { get; set; }
/// <summary>
/// 费用审核小计
/// </summary>
System.Double? COSTAUDIT_HSUBTOTAL { get; set; }
/// <summary>
/// 费用审核备注
/// </summary>
System.String COSTAUDIT_DESC { get; set; }
/// <summary>
/// 费用所属科目
/// </summary>
System.String COSTPLANBILL_SUBJECT { get; set; }
/// <summary>
/// 费用类型
/// </summary>
System.Int32? COSTPLANBILL_TYPE { get; set; }
/// <summary>
/// 使用单元
/// </summary>
System.String COSTPLANBILL_USEUNIT { get; set; }
/// <summary>
/// 上月数据
/// </summary>
System.Double? LASTCOSTPLANBILL_COUNT { get; set; }
/// <summary>
/// 本月数据
/// </summary>
System.Double? COSTPLANBILL_COUNT { get; set; }
/// <summary>
/// 走字数据
/// </summary>
System.Double? CHARACTER_DATA { get; set; }
/// <summary>
/// 单价
/// </summary>
System.Double? COSTPLANBILL_PRICE { get; set; }
/// <summary>
/// 金额
/// </summary>
System.Double? COSTPLANBILL_AMOUNT { get; set; }
/// <summary>
/// 本月计划金额
/// </summary>
System.Double? COSTPLANBILLAUDIT_AMOUNT { get; set; }
/// <summary>
/// 本月损耗
/// </summary>
System.Double? COSTPLANBILLLOSS_AMOUNT { get; set; }
}
#endregion
#region T_COSTPLANDETILS IModifyCOSTPLANDETILS
/// <summary>
/// T_COSTPLANDETILS 接口
/// </summary>
public interface IModifyCOSTPLANDETILS
{
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANDETILS_ID { get; set; }
/// <summary>
/// 计划主表内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_ID { get; set; }
/// <summary>
/// 项目名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_ITEM { get; set; }
/// <summary>
/// 规格/型号 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_RULE { get; set; }
/// <summary>
/// 费用计划单位 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_UNIT { get; set; }
/// <summary>
/// 费用计划数量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_COUNT { get; set; }
/// <summary>
/// 费用计划单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_PRICE { get; set; }
/// <summary>
/// 费用计划金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_AMOUNT { get; set; }
/// <summary>
/// 费用计划时工费 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_HOURPRICE { get; set; }
/// <summary>
/// 费用计划小计 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_HSUBTOTAL { get; set; }
/// <summary>
/// 费用计划备注 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLAN_DESC { get; set; }
/// <summary>
/// 费用审核单位 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_UNIT { get; set; }
/// <summary>
/// 费用审核数量 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_COUNT { get; set; }
/// <summary>
/// 费用审核单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_PRICE { get; set; }
/// <summary>
/// 费用审核金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_AMOUNT { get; set; }
/// <summary>
/// 费用审核时工费 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_HOURPRICE { get; set; }
/// <summary>
/// 费用审核小计 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_HSUBTOTAL { get; set; }
/// <summary>
/// 费用审核备注 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTAUDIT_DESC { get; set; }
/// <summary>
/// 费用所属科目 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_SUBJECT { get; set; }
/// <summary>
/// 费用类型 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_TYPE { get; set; }
/// <summary>
/// 使用单元 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_USEUNIT { get; set; }
/// <summary>
/// 上月数据 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_LASTCOSTPLANBILL_COUNT { get; set; }
/// <summary>
/// 本月数据 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_COUNT { get; set; }
/// <summary>
/// 走字数据 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_CHARACTER_DATA { get; set; }
/// <summary>
/// 单价 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_PRICE { get; set; }
/// <summary>
/// 金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILL_AMOUNT { get; set; }
/// <summary>
/// 本月计划金额 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILLAUDIT_AMOUNT { get; set; }
/// <summary>
/// 本月损耗 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_COSTPLANBILLLOSS_AMOUNT { get; set; }
}
#endregion
#region T_COSTPLANDETILS
/// <summary>
/// T_COSTPLANDETILS_费用计划审批详细 的字段类
/// </summary>
public class TableSchema_COSTPLANDETILS
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_costplandetils";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_COSTPLANDETILS";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "费用计划审批详细";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "COSTPLANDETILS_ID";
/// <summary>
/// 内码
/// </summary>
public const string COSTPLANDETILS_ID = "COSTPLANDETILS_ID";
/// <summary>
/// 计划主表内码
/// </summary>
public const string COSTPLANBILL_ID = "COSTPLANBILL_ID";
/// <summary>
/// 项目名称
/// </summary>
public const string COSTPLANBILL_ITEM = "COSTPLANBILL_ITEM";
/// <summary>
/// 规格/型号
/// </summary>
public const string COSTPLANBILL_RULE = "COSTPLANBILL_RULE";
/// <summary>
/// 费用计划单位
/// </summary>
public const string COSTPLAN_UNIT = "COSTPLAN_UNIT";
/// <summary>
/// 费用计划数量
/// </summary>
public const string COSTPLAN_COUNT = "COSTPLAN_COUNT";
/// <summary>
/// 费用计划单价
/// </summary>
public const string COSTPLAN_PRICE = "COSTPLAN_PRICE";
/// <summary>
/// 费用计划金额
/// </summary>
public const string COSTPLAN_AMOUNT = "COSTPLAN_AMOUNT";
/// <summary>
/// 费用计划时工费
/// </summary>
public const string COSTPLAN_HOURPRICE = "COSTPLAN_HOURPRICE";
/// <summary>
/// 费用计划小计
/// </summary>
public const string COSTPLAN_HSUBTOTAL = "COSTPLAN_HSUBTOTAL";
/// <summary>
/// 费用计划备注
/// </summary>
public const string COSTPLAN_DESC = "COSTPLAN_DESC";
/// <summary>
/// 费用审核单位
/// </summary>
public const string COSTAUDIT_UNIT = "COSTAUDIT_UNIT";
/// <summary>
/// 费用审核数量
/// </summary>
public const string COSTAUDIT_COUNT = "COSTAUDIT_COUNT";
/// <summary>
/// 费用审核单价
/// </summary>
public const string COSTAUDIT_PRICE = "COSTAUDIT_PRICE";
/// <summary>
/// 费用审核金额
/// </summary>
public const string COSTAUDIT_AMOUNT = "COSTAUDIT_AMOUNT";
/// <summary>
/// 费用审核时工费
/// </summary>
public const string COSTAUDIT_HOURPRICE = "COSTAUDIT_HOURPRICE";
/// <summary>
/// 费用审核小计
/// </summary>
public const string COSTAUDIT_HSUBTOTAL = "COSTAUDIT_HSUBTOTAL";
/// <summary>
/// 费用审核备注
/// </summary>
public const string COSTAUDIT_DESC = "COSTAUDIT_DESC";
/// <summary>
/// 费用所属科目
/// </summary>
public const string COSTPLANBILL_SUBJECT = "COSTPLANBILL_SUBJECT";
/// <summary>
/// 费用类型
/// </summary>
public const string COSTPLANBILL_TYPE = "COSTPLANBILL_TYPE";
/// <summary>
/// 使用单元
/// </summary>
public const string COSTPLANBILL_USEUNIT = "COSTPLANBILL_USEUNIT";
/// <summary>
/// 上月数据
/// </summary>
public const string LASTCOSTPLANBILL_COUNT = "LASTCOSTPLANBILL_COUNT";
/// <summary>
/// 本月数据
/// </summary>
public const string COSTPLANBILL_COUNT = "COSTPLANBILL_COUNT";
/// <summary>
/// 走字数据
/// </summary>
public const string CHARACTER_DATA = "CHARACTER_DATA";
/// <summary>
/// 单价
/// </summary>
public const string COSTPLANBILL_PRICE = "COSTPLANBILL_PRICE";
/// <summary>
/// 金额
/// </summary>
public const string COSTPLANBILL_AMOUNT = "COSTPLANBILL_AMOUNT";
/// <summary>
/// 本月计划金额
/// </summary>
public const string COSTPLANBILLAUDIT_AMOUNT = "COSTPLANBILLAUDIT_AMOUNT";
/// <summary>
/// 本月损耗
/// </summary>
public const string COSTPLANBILLLOSS_AMOUNT = "COSTPLANBILLLOSS_AMOUNT";
/// <summary>
/// 内码
/// </summary>
public const string Comment_COSTPLANDETILS_ID = "内码";
/// <summary>
/// 计划主表内码
/// </summary>
public const string Comment_COSTPLANBILL_ID = "计划主表内码";
/// <summary>
/// 项目名称
/// </summary>
public const string Comment_COSTPLANBILL_ITEM = "项目名称";
/// <summary>
/// 规格/型号
/// </summary>
public const string Comment_COSTPLANBILL_RULE = "规格/型号";
/// <summary>
/// 费用计划单位
/// </summary>
public const string Comment_COSTPLAN_UNIT = "费用计划单位";
/// <summary>
/// 费用计划数量
/// </summary>
public const string Comment_COSTPLAN_COUNT = "费用计划数量";
/// <summary>
/// 费用计划单价
/// </summary>
public const string Comment_COSTPLAN_PRICE = "费用计划单价";
/// <summary>
/// 费用计划金额
/// </summary>
public const string Comment_COSTPLAN_AMOUNT = "费用计划金额";
/// <summary>
/// 费用计划时工费
/// </summary>
public const string Comment_COSTPLAN_HOURPRICE = "费用计划时工费";
/// <summary>
/// 费用计划小计
/// </summary>
public const string Comment_COSTPLAN_HSUBTOTAL = "费用计划小计";
/// <summary>
/// 费用计划备注
/// </summary>
public const string Comment_COSTPLAN_DESC = "费用计划备注";
/// <summary>
/// 费用审核单位
/// </summary>
public const string Comment_COSTAUDIT_UNIT = "费用审核单位";
/// <summary>
/// 费用审核数量
/// </summary>
public const string Comment_COSTAUDIT_COUNT = "费用审核数量";
/// <summary>
/// 费用审核单价
/// </summary>
public const string Comment_COSTAUDIT_PRICE = "费用审核单价";
/// <summary>
/// 费用审核金额
/// </summary>
public const string Comment_COSTAUDIT_AMOUNT = "费用审核金额";
/// <summary>
/// 费用审核时工费
/// </summary>
public const string Comment_COSTAUDIT_HOURPRICE = "费用审核时工费";
/// <summary>
/// 费用审核小计
/// </summary>
public const string Comment_COSTAUDIT_HSUBTOTAL = "费用审核小计";
/// <summary>
/// 费用审核备注
/// </summary>
public const string Comment_COSTAUDIT_DESC = "费用审核备注";
/// <summary>
/// 费用所属科目
/// </summary>
public const string Comment_COSTPLANBILL_SUBJECT = "费用所属科目";
/// <summary>
/// 费用类型
/// </summary>
public const string Comment_COSTPLANBILL_TYPE = "费用类型";
/// <summary>
/// 使用单元
/// </summary>
public const string Comment_COSTPLANBILL_USEUNIT = "使用单元";
/// <summary>
/// 上月数据
/// </summary>
public const string Comment_LASTCOSTPLANBILL_COUNT = "上月数据";
/// <summary>
/// 本月数据
/// </summary>
public const string Comment_COSTPLANBILL_COUNT = "本月数据";
/// <summary>
/// 走字数据
/// </summary>
public const string Comment_CHARACTER_DATA = "走字数据";
/// <summary>
/// 单价
/// </summary>
public const string Comment_COSTPLANBILL_PRICE = "单价";
/// <summary>
/// 金额
/// </summary>
public const string Comment_COSTPLANBILL_AMOUNT = "金额";
/// <summary>
/// 本月计划金额
/// </summary>
public const string Comment_COSTPLANBILLAUDIT_AMOUNT = "本月计划金额";
/// <summary>
/// 本月损耗
/// </summary>
public const string Comment_COSTPLANBILLLOSS_AMOUNT = "本月损耗";
}
#endregion
}