164 lines
5.0 KiB
C#
164 lines
5.0 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.Personnel.Running.Interface
|
|
{
|
|
#region T_EMPLOY IEMPLOY 接口
|
|
/// <summary>
|
|
/// T_EMPLOY 接口
|
|
/// </summary>
|
|
public interface IEMPLOY
|
|
{
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
System.Int32? EMPLOY_ID { get; set; }
|
|
/// <summary>
|
|
/// 内码 的加密字符串
|
|
/// </summary>
|
|
string EMPLOY_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
System.Int32? PERSONNELPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 招聘人员名称
|
|
/// </summary>
|
|
System.String EMPLOYEE_NAME { get; set; }
|
|
/// <summary>
|
|
/// 岗位
|
|
/// </summary>
|
|
System.String POST_NAME { get; set; }
|
|
/// <summary>
|
|
/// 评价
|
|
/// </summary>
|
|
System.String APPRAISE { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
System.DateTime? CREATE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 招聘说明
|
|
/// </summary>
|
|
System.String EMPLOYEE_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_EMPLOY IModifyEMPLOY 接口
|
|
/// <summary>
|
|
/// T_EMPLOY 接口
|
|
/// </summary>
|
|
public interface IModifyEMPLOY
|
|
{
|
|
/// <summary>
|
|
/// 内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EMPLOY_ID { get; set; }
|
|
/// <summary>
|
|
/// 流程内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PERSONNELPROINST_ID { get; set; }
|
|
/// <summary>
|
|
/// 招聘人员名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EMPLOYEE_NAME { get; set; }
|
|
/// <summary>
|
|
/// 岗位 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_POST_NAME { get; set; }
|
|
/// <summary>
|
|
/// 评价 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_APPRAISE { get; set; }
|
|
/// <summary>
|
|
/// 创建时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_CREATE_DATE { get; set; }
|
|
/// <summary>
|
|
/// 招聘说明 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_EMPLOYEE_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_EMPLOY 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_EMPLOY_招聘表 的字段类
|
|
/// </summary>
|
|
public class TableSchema_EMPLOY
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_employ";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_EMPLOY";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "招聘表";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "EMPLOY_ID";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string EMPLOY_ID = "EMPLOY_ID";
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
public const string PERSONNELPROINST_ID = "PERSONNELPROINST_ID";
|
|
/// <summary>
|
|
/// 招聘人员名称
|
|
/// </summary>
|
|
public const string EMPLOYEE_NAME = "EMPLOYEE_NAME";
|
|
/// <summary>
|
|
/// 岗位
|
|
/// </summary>
|
|
public const string POST_NAME = "POST_NAME";
|
|
/// <summary>
|
|
/// 评价
|
|
/// </summary>
|
|
public const string APPRAISE = "APPRAISE";
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public const string CREATE_DATE = "CREATE_DATE";
|
|
/// <summary>
|
|
/// 招聘说明
|
|
/// </summary>
|
|
public const string EMPLOYEE_DESC = "EMPLOYEE_DESC";
|
|
/// <summary>
|
|
/// 内码
|
|
/// </summary>
|
|
public const string Comment_EMPLOY_ID = "内码";
|
|
/// <summary>
|
|
/// 流程内码
|
|
/// </summary>
|
|
public const string Comment_PERSONNELPROINST_ID = "流程内码";
|
|
/// <summary>
|
|
/// 招聘人员名称
|
|
/// </summary>
|
|
public const string Comment_EMPLOYEE_NAME = "招聘人员名称";
|
|
/// <summary>
|
|
/// 岗位
|
|
/// </summary>
|
|
public const string Comment_POST_NAME = "岗位";
|
|
/// <summary>
|
|
/// 评价
|
|
/// </summary>
|
|
public const string Comment_APPRAISE = "评价";
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public const string Comment_CREATE_DATE = "创建时间";
|
|
/// <summary>
|
|
/// 招聘说明
|
|
/// </summary>
|
|
public const string Comment_EMPLOYEE_DESC = "招聘说明";
|
|
}
|
|
#endregion
|
|
}
|