404 lines
14 KiB
C#
404 lines
14 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.Coop.Merchant.Interface
|
|
{
|
|
#region T_MERCHANTEVALUATION IMERCHANTEVALUATION 接口
|
|
/// <summary>
|
|
/// T_MERCHANTEVALUATION 接口
|
|
/// </summary>
|
|
public interface IMERCHANTEVALUATION
|
|
{
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
System.DateTime? OPERATE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 备注说明
|
|
/// </summary>
|
|
System.String MERCHANTEVALUATION_DESC { get; set; }
|
|
/// <summary>
|
|
/// 考评内码
|
|
/// </summary>
|
|
System.Int32? MERCHANTEVALUATION_ID { get; set; }
|
|
/// <summary>
|
|
/// 考评内码 的加密字符串
|
|
/// </summary>
|
|
string MERCHANTEVALUATION_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 业主内码
|
|
/// </summary>
|
|
System.Int32? OWNERUNIT_ID { get; set; }
|
|
/// <summary>
|
|
/// 业主单位
|
|
/// </summary>
|
|
System.String OWNERUNIT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 省份标识
|
|
/// </summary>
|
|
System.Int32? PROVINCE_CODE { get; set; }
|
|
/// <summary>
|
|
/// 商户内码
|
|
/// </summary>
|
|
System.Int32? MERCHANTS_ID { get; set; }
|
|
/// <summary>
|
|
/// 统计归口
|
|
/// </summary>
|
|
System.String STATISTICS_TYPE { get; set; }
|
|
/// <summary>
|
|
/// 片区内码
|
|
/// </summary>
|
|
System.Int32? REGION_ID { get; set; }
|
|
/// <summary>
|
|
/// 片区名称
|
|
/// </summary>
|
|
System.String REGION_NAME { get; set; }
|
|
/// <summary>
|
|
/// 服务区内码
|
|
/// </summary>
|
|
System.Int32? SERVERPART_ID { get; set; }
|
|
/// <summary>
|
|
/// 服务区名称
|
|
/// </summary>
|
|
System.String SERVERPART_NAME { get; set; }
|
|
/// <summary>
|
|
/// 经营项目
|
|
/// </summary>
|
|
System.String BUSINESS_TRADE { get; set; }
|
|
/// <summary>
|
|
/// 门店内码
|
|
/// </summary>
|
|
System.Int32? SERVERPARTSHOP_ID { get; set; }
|
|
/// <summary>
|
|
/// 门店名称
|
|
/// </summary>
|
|
System.String SHOPNAME { get; set; }
|
|
/// <summary>
|
|
/// 考评部门
|
|
/// </summary>
|
|
System.String EVALUATION_DEPARTMENT { get; set; }
|
|
/// <summary>
|
|
/// 考评日期
|
|
/// </summary>
|
|
System.DateTime? EVALUATION_DATE { get; set; }
|
|
/// <summary>
|
|
/// 考评分数
|
|
/// </summary>
|
|
System.Double? EVALUATION_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考评等级
|
|
/// </summary>
|
|
System.Int32? EVALUATION_DEGREE { get; set; }
|
|
/// <summary>
|
|
/// 考评状态
|
|
/// </summary>
|
|
System.Int32? MERCHANTEVALUATION_STATE { get; set; }
|
|
/// <summary>
|
|
/// 操作人内码
|
|
/// </summary>
|
|
System.Int32? STAFF_ID { get; set; }
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
System.String STAFF_NAME { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_MERCHANTEVALUATION IModifyMERCHANTEVALUATION 接口
|
|
/// <summary>
|
|
/// T_MERCHANTEVALUATION 接口
|
|
/// </summary>
|
|
public interface IModifyMERCHANTEVALUATION
|
|
{
|
|
/// <summary>
|
|
/// 操作时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OPERATE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 备注说明 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MERCHANTEVALUATION_DESC { get; set; }
|
|
/// <summary>
|
|
/// 考评内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MERCHANTEVALUATION_ID { get; set; }
|
|
/// <summary>
|
|
/// 业主内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OWNERUNIT_ID { get; set; }
|
|
/// <summary>
|
|
/// 业主单位 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OWNERUNIT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 省份标识 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PROVINCE_CODE { get; set; }
|
|
/// <summary>
|
|
/// 商户内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MERCHANTS_ID { get; set; }
|
|
/// <summary>
|
|
/// 统计归口 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STATISTICS_TYPE { get; set; }
|
|
/// <summary>
|
|
/// 片区内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_REGION_ID { get; set; }
|
|
/// <summary>
|
|
/// 片区名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_REGION_NAME { get; set; }
|
|
/// <summary>
|
|
/// 服务区内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPART_ID { get; set; }
|
|
/// <summary>
|
|
/// 服务区名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPART_NAME { get; set; }
|
|
/// <summary>
|
|
/// 经营项目 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BUSINESS_TRADE { get; set; }
|
|
/// <summary>
|
|
/// 门店内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPARTSHOP_ID { get; set; }
|
|
/// <summary>
|
|
/// 门店名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SHOPNAME { get; set; }
|
|
/// <summary>
|
|
/// 考评部门 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_DEPARTMENT { get; set; }
|
|
/// <summary>
|
|
/// 考评日期 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_DATE { get; set; }
|
|
/// <summary>
|
|
/// 考评分数 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_SCORE { get; set; }
|
|
/// <summary>
|
|
/// 考评等级 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EVALUATION_DEGREE { get; set; }
|
|
/// <summary>
|
|
/// 考评状态 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MERCHANTEVALUATION_STATE { get; set; }
|
|
/// <summary>
|
|
/// 操作人内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STAFF_ID { get; set; }
|
|
/// <summary>
|
|
/// 操作人员 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STAFF_NAME { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_MERCHANTEVALUATION 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_MERCHANTEVALUATION_合作商户考评信息表 的字段类
|
|
/// </summary>
|
|
public class TableSchema_MERCHANTEVALUATION
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_merchantevaluation";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_MERCHANTEVALUATION";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "合作商户考评信息表";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "MERCHANTEVALUATION_ID";
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public const string OPERATE_DATE = "OPERATE_DATE";
|
|
/// <summary>
|
|
/// 备注说明
|
|
/// </summary>
|
|
public const string MERCHANTEVALUATION_DESC = "MERCHANTEVALUATION_DESC";
|
|
/// <summary>
|
|
/// 考评内码
|
|
/// </summary>
|
|
public const string MERCHANTEVALUATION_ID = "MERCHANTEVALUATION_ID";
|
|
/// <summary>
|
|
/// 业主内码
|
|
/// </summary>
|
|
public const string OWNERUNIT_ID = "OWNERUNIT_ID";
|
|
/// <summary>
|
|
/// 业主单位
|
|
/// </summary>
|
|
public const string OWNERUNIT_NAME = "OWNERUNIT_NAME";
|
|
/// <summary>
|
|
/// 省份标识
|
|
/// </summary>
|
|
public const string PROVINCE_CODE = "PROVINCE_CODE";
|
|
/// <summary>
|
|
/// 商户内码
|
|
/// </summary>
|
|
public const string MERCHANTS_ID = "MERCHANTS_ID";
|
|
/// <summary>
|
|
/// 统计归口
|
|
/// </summary>
|
|
public const string STATISTICS_TYPE = "STATISTICS_TYPE";
|
|
/// <summary>
|
|
/// 片区内码
|
|
/// </summary>
|
|
public const string REGION_ID = "REGION_ID";
|
|
/// <summary>
|
|
/// 片区名称
|
|
/// </summary>
|
|
public const string REGION_NAME = "REGION_NAME";
|
|
/// <summary>
|
|
/// 服务区内码
|
|
/// </summary>
|
|
public const string SERVERPART_ID = "SERVERPART_ID";
|
|
/// <summary>
|
|
/// 服务区名称
|
|
/// </summary>
|
|
public const string SERVERPART_NAME = "SERVERPART_NAME";
|
|
/// <summary>
|
|
/// 经营项目
|
|
/// </summary>
|
|
public const string BUSINESS_TRADE = "BUSINESS_TRADE";
|
|
/// <summary>
|
|
/// 门店内码
|
|
/// </summary>
|
|
public const string SERVERPARTSHOP_ID = "SERVERPARTSHOP_ID";
|
|
/// <summary>
|
|
/// 门店名称
|
|
/// </summary>
|
|
public const string SHOPNAME = "SHOPNAME";
|
|
/// <summary>
|
|
/// 考评部门
|
|
/// </summary>
|
|
public const string EVALUATION_DEPARTMENT = "EVALUATION_DEPARTMENT";
|
|
/// <summary>
|
|
/// 考评日期
|
|
/// </summary>
|
|
public const string EVALUATION_DATE = "EVALUATION_DATE";
|
|
/// <summary>
|
|
/// 考评分数
|
|
/// </summary>
|
|
public const string EVALUATION_SCORE = "EVALUATION_SCORE";
|
|
/// <summary>
|
|
/// 考评等级
|
|
/// </summary>
|
|
public const string EVALUATION_DEGREE = "EVALUATION_DEGREE";
|
|
/// <summary>
|
|
/// 考评状态
|
|
/// </summary>
|
|
public const string MERCHANTEVALUATION_STATE = "MERCHANTEVALUATION_STATE";
|
|
/// <summary>
|
|
/// 操作人内码
|
|
/// </summary>
|
|
public const string STAFF_ID = "STAFF_ID";
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
public const string STAFF_NAME = "STAFF_NAME";
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public const string Comment_OPERATE_DATE = "操作时间";
|
|
/// <summary>
|
|
/// 备注说明
|
|
/// </summary>
|
|
public const string Comment_MERCHANTEVALUATION_DESC = "备注说明";
|
|
/// <summary>
|
|
/// 考评内码
|
|
/// </summary>
|
|
public const string Comment_MERCHANTEVALUATION_ID = "考评内码";
|
|
/// <summary>
|
|
/// 业主内码
|
|
/// </summary>
|
|
public const string Comment_OWNERUNIT_ID = "业主内码";
|
|
/// <summary>
|
|
/// 业主单位
|
|
/// </summary>
|
|
public const string Comment_OWNERUNIT_NAME = "业主单位";
|
|
/// <summary>
|
|
/// 省份标识
|
|
/// </summary>
|
|
public const string Comment_PROVINCE_CODE = "省份标识";
|
|
/// <summary>
|
|
/// 商户内码
|
|
/// </summary>
|
|
public const string Comment_MERCHANTS_ID = "商户内码";
|
|
/// <summary>
|
|
/// 统计归口
|
|
/// </summary>
|
|
public const string Comment_STATISTICS_TYPE = "统计归口";
|
|
/// <summary>
|
|
/// 片区内码
|
|
/// </summary>
|
|
public const string Comment_REGION_ID = "片区内码";
|
|
/// <summary>
|
|
/// 片区名称
|
|
/// </summary>
|
|
public const string Comment_REGION_NAME = "片区名称";
|
|
/// <summary>
|
|
/// 服务区内码
|
|
/// </summary>
|
|
public const string Comment_SERVERPART_ID = "服务区内码";
|
|
/// <summary>
|
|
/// 服务区名称
|
|
/// </summary>
|
|
public const string Comment_SERVERPART_NAME = "服务区名称";
|
|
/// <summary>
|
|
/// 经营项目
|
|
/// </summary>
|
|
public const string Comment_BUSINESS_TRADE = "经营项目";
|
|
/// <summary>
|
|
/// 门店内码
|
|
/// </summary>
|
|
public const string Comment_SERVERPARTSHOP_ID = "门店内码";
|
|
/// <summary>
|
|
/// 门店名称
|
|
/// </summary>
|
|
public const string Comment_SHOPNAME = "门店名称";
|
|
/// <summary>
|
|
/// 考评部门
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_DEPARTMENT = "考评部门";
|
|
/// <summary>
|
|
/// 考评日期
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_DATE = "考评日期";
|
|
/// <summary>
|
|
/// 考评分数
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_SCORE = "考评分数";
|
|
/// <summary>
|
|
/// 考评等级
|
|
/// </summary>
|
|
public const string Comment_EVALUATION_DEGREE = "考评等级";
|
|
/// <summary>
|
|
/// 考评状态
|
|
/// </summary>
|
|
public const string Comment_MERCHANTEVALUATION_STATE = "考评状态";
|
|
/// <summary>
|
|
/// 操作人内码
|
|
/// </summary>
|
|
public const string Comment_STAFF_ID = "操作人内码";
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
public const string Comment_STAFF_NAME = "操作人员";
|
|
}
|
|
#endregion
|
|
}
|