You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
856 B
29 lines
856 B
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using GDZZ.Core.Entity;
|
|
using GDZZ.Application.Enum;
|
|
|
|
namespace GDZZ.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 候选人管理表
|
|
/// </summary>
|
|
[SugarTable("mini_candidate")]
|
|
[Description("候选人管理表")]
|
|
public class Candidate : DEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 猎头ID
|
|
/// </summary>
|
|
public long HeadID { get; set; }
|
|
/// <summary>
|
|
/// 候选人ID
|
|
/// </summary>
|
|
public long CanndidateID { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public CandidateEnum Status { get; set; }
|
|
}
|
|
} |