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