NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceEducatePartti...

151 lines
3.8 KiB
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceEducateParttimejobInfoCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceEducateParttimejobInfoCreateModel : AopObject
{
/// <summary>
/// 市
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 结算方式
/// </summary>
[XmlElement("clearing_form")]
public string ClearingForm { get; set; }
/// <summary>
/// 岗位图片
/// </summary>
[XmlElement("company_logo")]
public string CompanyLogo { get; set; }
/// <summary>
/// 公司名称
/// </summary>
[XmlElement("company_name")]
public string CompanyName { get; set; }
/// <summary>
/// 学历要求
/// </summary>
[XmlElement("educational_requirements")]
public string EducationalRequirements { get; set; }
/// <summary>
/// json格式扩展字段
/// </summary>
[XmlElement("features")]
public string Features { get; set; }
/// <summary>
/// 性别要求
/// </summary>
[XmlElement("gender_requirement")]
public string GenderRequirement { get; set; }
/// <summary>
/// 热度
/// </summary>
[XmlElement("heat")]
public string Heat { get; set; }
/// <summary>
/// 身高要求
/// </summary>
[XmlElement("height_limit")]
public string HeightLimit { get; set; }
/// <summary>
/// 行业属性
/// </summary>
[XmlElement("industry_attributes")]
public string IndustryAttributes { get; set; }
/// <summary>
/// 是否名企职位
/// </summary>
[XmlElement("is_famous")]
public string IsFamous { get; set; }
/// <summary>
/// 岗位地址,精确到经纬度
/// </summary>
[XmlElement("job_address")]
public string JobAddress { get; set; }
/// <summary>
/// 岗位所属类目
/// </summary>
[XmlElement("job_category")]
public string JobCategory { get; set; }
/// <summary>
/// 工作时间
/// </summary>
[XmlElement("job_frequency")]
public string JobFrequency { get; set; }
/// <summary>
/// 岗位id
/// </summary>
[XmlElement("job_id")]
public string JobId { get; set; }
/// <summary>
/// 岗位名称
/// </summary>
[XmlElement("job_name")]
public string JobName { get; set; }
/// <summary>
/// 岗位相关内容介绍
/// </summary>
[XmlElement("job_remark")]
public string JobRemark { get; set; }
/// <summary>
/// 岗位福利
/// </summary>
[XmlElement("job_welfare")]
public string JobWelfare { get; set; }
/// <summary>
/// 健康证要求
/// </summary>
[XmlElement("need_health")]
public string NeedHealth { get; set; }
/// <summary>
/// 薪资
/// </summary>
[XmlElement("salary")]
public string Salary { get; set; }
/// <summary>
/// 跳转地址
/// </summary>
[XmlElement("skip_url")]
public string SkipUrl { get; set; }
/// <summary>
/// 数据状态
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 工作日期
/// </summary>
[XmlElement("working_date")]
public string WorkingDate { get; set; }
}
}