2025-03-28 09:49:56 +08:00

276 lines
9.2 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Coop.Merchant.Interface
{
#region T_SUPPLIEREVALUATION ISUPPLIEREVALUATION
/// <summary>
/// T_SUPPLIEREVALUATION 接口
/// </summary>
public interface ISUPPLIEREVALUATION
{
/// <summary>
/// 考评内码
/// </summary>
System.Int32? SUPPLIEREVALUATION_ID { get; set; }
/// <summary>
/// 考评内码 的加密字符串
/// </summary>
string SUPPLIEREVALUATION_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? SUPPLIER_ID { 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.String STATISTICS_TYPE { get; set; }
/// <summary>
/// 考核状态
/// </summary>
System.Int32? SUPPLIEREVALUATION_STATE { 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 SUPPLIEREVALUATION_DESC { get; set; }
}
#endregion
#region T_SUPPLIEREVALUATION IModifySUPPLIEREVALUATION
/// <summary>
/// T_SUPPLIEREVALUATION 接口
/// </summary>
public interface IModifySUPPLIEREVALUATION
{
/// <summary>
/// 考评内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SUPPLIEREVALUATION_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_SUPPLIER_ID { 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_STATISTICS_TYPE { get; set; }
/// <summary>
/// 考核状态 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_SUPPLIEREVALUATION_STATE { 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_SUPPLIEREVALUATION_DESC { get; set; }
}
#endregion
#region T_SUPPLIEREVALUATION
/// <summary>
/// T_SUPPLIEREVALUATION_供应商考评信息表 的字段类
/// </summary>
public class TableSchema_SUPPLIEREVALUATION
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_supplierevaluation";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_SUPPLIEREVALUATION";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "供应商考评信息表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "SUPPLIEREVALUATION_ID";
/// <summary>
/// 考评内码
/// </summary>
public const string SUPPLIEREVALUATION_ID = "SUPPLIEREVALUATION_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 SUPPLIER_ID = "SUPPLIER_ID";
/// <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 STATISTICS_TYPE = "STATISTICS_TYPE";
/// <summary>
/// 考核状态
/// </summary>
public const string SUPPLIEREVALUATION_STATE = "SUPPLIEREVALUATION_STATE";
/// <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 SUPPLIEREVALUATION_DESC = "SUPPLIEREVALUATION_DESC";
/// <summary>
/// 考评内码
/// </summary>
public const string Comment_SUPPLIEREVALUATION_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_SUPPLIER_ID = "商户内码";
/// <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_STATISTICS_TYPE = "统计归口";
/// <summary>
/// 考核状态
/// </summary>
public const string Comment_SUPPLIEREVALUATION_STATE = "考核状态";
/// <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_SUPPLIEREVALUATION_DESC = "备注说明";
}
#endregion
}