292 lines
10 KiB
C#
292 lines
10 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.Coop.Merchant.Interface
|
|
{
|
|
#region T_MERCHANTEVALUATIONINFO IMERCHANTEVALUATIONINFO 接口
|
|
/// <summary>
|
|
/// T_MERCHANTEVALUATIONINFO 接口
|
|
/// </summary>
|
|
public interface IMERCHANTEVALUATIONINFO
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? MERCHANTEVALUATIONINFO_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string MERCHANTEVALUATIONINFO_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 考评内码
|
|
/// </summary>
|
|
System.Int32? MERCHANTEVALUATION_ID { get; set; }
|
|
/// <summary>
|
|
/// 规则内码
|
|
/// </summary>
|
|
System.Int32? EVALUATIONRULES_ID { get; set; }
|
|
/// <summary>
|
|
/// 考核部门
|
|
/// </summary>
|
|
System.String EVALUATION_DEPARTMENT { get; set; }
|
|
/// <summary>
|
|
/// 考核项目
|
|
/// </summary>
|
|
System.Int32? EVALUATION_ITEMS { get; set; }
|
|
/// <summary>
|
|
/// 考核内容
|
|
/// </summary>
|
|
System.String EVALUATIONRULES_CONTENT { get; set; }
|
|
/// <summary>
|
|
/// 分值标准
|
|
/// </summary>
|
|
System.Double? STANDARD_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考核得分
|
|
/// </summary>
|
|
System.Double? EVALUATION_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考核扣分
|
|
/// </summary>
|
|
System.Double? DEDUCT_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考核人员
|
|
/// </summary>
|
|
System.String EVALUATION_STAFF { get; set; }
|
|
/// <summary>
|
|
/// 扣分原因
|
|
/// </summary>
|
|
System.String DEDUCT_REASON { 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 MERCHANTEVALUATIONINFO_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_MERCHANTEVALUATIONINFO IModifyMERCHANTEVALUATIONINFO 接口
|
|
/// <summary>
|
|
/// T_MERCHANTEVALUATIONINFO 接口
|
|
/// </summary>
|
|
public interface IModifyMERCHANTEVALUATIONINFO
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MERCHANTEVALUATIONINFO_ID { get; set; }
|
|
/// <summary>
|
|
/// 考评内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MERCHANTEVALUATION_ID { get; set; }
|
|
/// <summary>
|
|
/// 规则内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATIONRULES_ID { get; set; }
|
|
/// <summary>
|
|
/// 考核部门 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_DEPARTMENT { get; set; }
|
|
/// <summary>
|
|
/// 考核项目 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_ITEMS { get; set; }
|
|
/// <summary>
|
|
/// 考核内容 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATIONRULES_CONTENT { get; set; }
|
|
/// <summary>
|
|
/// 分值标准 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STANDARD_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考核得分 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考核扣分 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DEDUCT_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考核人员 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_STAFF { get; set; }
|
|
/// <summary>
|
|
/// 扣分原因 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_DEDUCT_REASON { 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_MERCHANTEVALUATIONINFO_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_MERCHANTEVALUATIONINFO 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_MERCHANTEVALUATIONINFO_合作商户考评详情表 的字段类
|
|
/// </summary>
|
|
public class TableSchema_MERCHANTEVALUATIONINFO
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_merchantevaluationinfo";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_MERCHANTEVALUATIONINFO";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "合作商户考评详情表";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "MERCHANTEVALUATIONINFO_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string MERCHANTEVALUATIONINFO_ID = "MERCHANTEVALUATIONINFO_ID";
|
|
/// <summary>
|
|
/// 考评内码
|
|
/// </summary>
|
|
public const string MERCHANTEVALUATION_ID = "MERCHANTEVALUATION_ID";
|
|
/// <summary>
|
|
/// 规则内码
|
|
/// </summary>
|
|
public const string EVALUATIONRULES_ID = "EVALUATIONRULES_ID";
|
|
/// <summary>
|
|
/// 考核部门
|
|
/// </summary>
|
|
public const string EVALUATION_DEPARTMENT = "EVALUATION_DEPARTMENT";
|
|
/// <summary>
|
|
/// 考核项目
|
|
/// </summary>
|
|
public const string EVALUATION_ITEMS = "EVALUATION_ITEMS";
|
|
/// <summary>
|
|
/// 考核内容
|
|
/// </summary>
|
|
public const string EVALUATIONRULES_CONTENT = "EVALUATIONRULES_CONTENT";
|
|
/// <summary>
|
|
/// 分值标准
|
|
/// </summary>
|
|
public const string STANDARD_SCORE = "STANDARD_SCORE";
|
|
/// <summary>
|
|
/// 考核得分
|
|
/// </summary>
|
|
public const string EVALUATION_SCORE = "EVALUATION_SCORE";
|
|
/// <summary>
|
|
/// 考核扣分
|
|
/// </summary>
|
|
public const string DEDUCT_SCORE = "DEDUCT_SCORE";
|
|
/// <summary>
|
|
/// 考核人员
|
|
/// </summary>
|
|
public const string EVALUATION_STAFF = "EVALUATION_STAFF";
|
|
/// <summary>
|
|
/// 扣分原因
|
|
/// </summary>
|
|
public const string DEDUCT_REASON = "DEDUCT_REASON";
|
|
/// <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 MERCHANTEVALUATIONINFO_DESC = "MERCHANTEVALUATIONINFO_DESC";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_MERCHANTEVALUATIONINFO_ID = "内码";
|
|
/// <summary>
|
|
/// 考评内码
|
|
/// </summary>
|
|
public const string Comment_MERCHANTEVALUATION_ID = "考评内码";
|
|
/// <summary>
|
|
/// 规则内码
|
|
/// </summary>
|
|
public const string Comment_EVALUATIONRULES_ID = "规则内码";
|
|
/// <summary>
|
|
/// 考核部门
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_DEPARTMENT = "考核部门";
|
|
/// <summary>
|
|
/// 考核项目
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_ITEMS = "考核项目";
|
|
/// <summary>
|
|
/// 考核内容
|
|
/// </summary>
|
|
public const string Comment_EVALUATIONRULES_CONTENT = "考核内容";
|
|
/// <summary>
|
|
/// 分值标准
|
|
/// </summary>
|
|
public const string Comment_STANDARD_SCORE = "分值标准";
|
|
/// <summary>
|
|
/// 考核得分
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_SCORE = "考核得分";
|
|
/// <summary>
|
|
/// 考核扣分
|
|
/// </summary>
|
|
public const string Comment_DEDUCT_SCORE = "考核扣分";
|
|
/// <summary>
|
|
/// 考核人员
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_STAFF = "考核人员";
|
|
/// <summary>
|
|
/// 扣分原因
|
|
/// </summary>
|
|
public const string Comment_DEDUCT_REASON = "扣分原因";
|
|
/// <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_MERCHANTEVALUATIONINFO_DESC = "备注说明";
|
|
}
|
|
#endregion
|
|
}
|