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.
|
|
|
|
using System;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using GDZZ.Core.Entity;
|
|
|
|
|
namespace GDZZ.Application.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 求职信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("jobhunt_message")]
|
|
|
|
|
[Description("求职信息")]
|
|
|
|
|
public class JobhuntMessage : DEntityBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long TenantId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 求职详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PositionInfo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 求职标题
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 求职状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 经验
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Experience { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Tag { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 省份
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int ProvinceId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 城市
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int CityId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|