using GDZZ.Application;
using GDZZ.Application.Enum;
using System;
namespace GDZZ.Application
{
///
/// 小程序招聘列表输出参数
///
public class MiniResumeOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 要求
///
public string Sak { get; set; }
///
/// 待遇
///
public string Salary { get; set; }
///
/// 详情
///
public string Info { get; set; }
///
/// 公司名称
///
public string CompanyName { get; set; }
///
/// 公司logo
///
public string Logo { get; set; }
///
/// 公司ID
///
public long CompanyID { get; set; }
///
/// 发表时间
///
public string Time { get; set; }
///
/// 地区
///
public string RegionName { get; set; }
///
/// 公司地区
///
public string CompanyRegionName { get; set; }
///
/// 经验
///
public string Level { get; set; }
///
/// 待遇ID
///
public string SalaryID { get; set; }
///
/// 等级
///
public string Record { get; set; }
///
/// 地区ID合集
///
public string RegionStrID { get; set; }
///
/// 状态
///
public ResumeStatusEnum Status { get; set; }
///
/// 招聘类型
///
public ResumeTypeEnum? TypeEnum { get; set; }
}
}