忽略dll文件git
This commit is contained in:
@@ -1,234 +0,0 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoEduCampusJobCreateModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayEcoEduCampusJobCreateModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 城市编码
|
||||
/// </summary>
|
||||
[JsonProperty("area_city_code")]
|
||||
public string AreaCityCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 城市名称
|
||||
/// </summary>
|
||||
[JsonProperty("area_city_name")]
|
||||
public string AreaCityName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 区编码
|
||||
/// </summary>
|
||||
[JsonProperty("area_district_code")]
|
||||
public string AreaDistrictCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 区名称
|
||||
/// </summary>
|
||||
[JsonProperty("area_district_name")]
|
||||
public string AreaDistrictName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工作详细地址
|
||||
/// </summary>
|
||||
[JsonProperty("area_job_address")]
|
||||
public string AreaJobAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 省份编码(直辖市
|
||||
/// </summary>
|
||||
[JsonProperty("area_province_code")]
|
||||
public long AreaProvinceCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 省份名称(直辖市)
|
||||
/// </summary>
|
||||
[JsonProperty("area_province_name")]
|
||||
public string AreaProvinceName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 街道名称
|
||||
/// </summary>
|
||||
[JsonProperty("area_street_name")]
|
||||
public string AreaStreetName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 企业法律名称
|
||||
/// </summary>
|
||||
[JsonProperty("company_lawname")]
|
||||
public string CompanyLawname { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 参数描述企业Logo
|
||||
/// </summary>
|
||||
[JsonProperty("company_logo")]
|
||||
public string CompanyLogo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 公司名称
|
||||
/// </summary>
|
||||
[JsonProperty("company_name")]
|
||||
public string CompanyName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 第三方公司ID
|
||||
/// </summary>
|
||||
[JsonProperty("company_source")]
|
||||
public string CompanySource { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注json 数据
|
||||
/// </summary>
|
||||
[JsonProperty("content_var")]
|
||||
public string ContentVar { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 过期时间(毫秒数)
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_expired")]
|
||||
public string GmtExpired { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 刷新时间(毫秒数)
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_refresh")]
|
||||
public string GmtRefresh { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职位开始时间(毫秒数)
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_start")]
|
||||
public string GmtStart { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职位描述
|
||||
/// </summary>
|
||||
[JsonProperty("job_desc")]
|
||||
public string JobDesc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 招聘人数
|
||||
/// </summary>
|
||||
[JsonProperty("job_hire_number")]
|
||||
public long JobHireNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职位名称
|
||||
/// </summary>
|
||||
[JsonProperty("job_name")]
|
||||
public string JobName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业亮点/关键字
|
||||
/// </summary>
|
||||
[JsonProperty("job_perk")]
|
||||
public string JobPerk { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 要求简历语言(1中文;2英文)
|
||||
/// </summary>
|
||||
[JsonProperty("job_resume_lg")]
|
||||
public long JobResumeLg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学历要求专科(1:大专以下2:大专3:本科4:硕士5:博士6:其他7:不限)
|
||||
/// </summary>
|
||||
[JsonProperty("job_rq_education")]
|
||||
public long JobRqEducation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业一级分类code
|
||||
/// </summary>
|
||||
[JsonProperty("job_tier_one_code")]
|
||||
public string JobTierOneCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业一级分类name
|
||||
/// </summary>
|
||||
[JsonProperty("job_tier_one_name")]
|
||||
public string JobTierOneName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业三级分类code
|
||||
/// </summary>
|
||||
[JsonProperty("job_tier_three_code")]
|
||||
public string JobTierThreeCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业三级分类name
|
||||
/// </summary>
|
||||
[JsonProperty("job_tier_three_name")]
|
||||
public string JobTierThreeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业二级分类code
|
||||
/// </summary>
|
||||
[JsonProperty("job_tier_two_code")]
|
||||
public string JobTierTwoCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职业二级分类name
|
||||
/// </summary>
|
||||
[JsonProperty("job_tier_two_name")]
|
||||
public string JobTierTwoName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职位类型枚举(1实习;2兼职;3全职;)
|
||||
/// </summary>
|
||||
[JsonProperty("job_type")]
|
||||
public long JobType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最大薪资(单位¥)
|
||||
/// </summary>
|
||||
[JsonProperty("payment_max")]
|
||||
public long PaymentMax { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最小薪资(单位¥)
|
||||
/// </summary>
|
||||
[JsonProperty("payment_min")]
|
||||
public long PaymentMin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 薪资单位(1:天2:月3:周)
|
||||
/// </summary>
|
||||
[JsonProperty("payment_unit")]
|
||||
public long PaymentUnit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职位来源方编码
|
||||
/// </summary>
|
||||
[JsonProperty("source_code")]
|
||||
public string SourceCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 职位在合作方的ID
|
||||
/// </summary>
|
||||
[JsonProperty("source_id")]
|
||||
public string SourceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 每周到岗天数
|
||||
/// </summary>
|
||||
[JsonProperty("tra_job_freq")]
|
||||
public long TraJobFreq { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 实习时间长度(单位月)
|
||||
/// </summary>
|
||||
[JsonProperty("tra_job_period")]
|
||||
public long TraJobPeriod { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否可转正(1可以;0不可以)
|
||||
/// </summary>
|
||||
[JsonProperty("tra_job_promot")]
|
||||
public long TraJobPromot { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user