using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoEduJzPostPublishModel Data Structure. /// [Serializable] public class AlipayEcoEduJzPostPublishModel : AopObject { /// /// 年龄要求范围 /// [XmlElement("age_demand")] public EduAgeDemand AgeDemand { get; set; } /// /// 工资/提成信息备注 /// [XmlElement("commission")] public string Commission { get; set; } /// /// 客服联系方式 /// [XmlElement("company_contact")] public string CompanyContact { get; set; } /// /// 商户 Logo /// [XmlElement("company_logo")] public string CompanyLogo { get; set; } /// /// 职位所属公司名称 /// [XmlElement("company_name")] public string CompanyName { get; set; } /// /// 联系方式 手机座机 /// [XmlElement("contact_phone")] public string ContactPhone { get; set; } /// /// 工作结束的日期 /// [XmlElement("date_end")] public string DateEnd { get; set; } /// /// 工作开始的日期 /// [XmlElement("date_start")] public string DateStart { get; set; } /// /// 报名截止日期 /// [XmlElement("deadline")] public string Deadline { get; set; } /// /// 性别要求 0:不限;1:男;2:女 /// [XmlElement("gender")] public string Gender { get; set; } /// /// 招聘人数 /// [XmlElement("hire_number")] public string HireNumber { get; set; } /// /// 有无提成0:没有1:有 /// [XmlElement("is_commission")] public string IsCommission { get; set; } /// /// 职位描述:工作内容、岗位要求 /// [XmlElement("job_desc")] public string JobDesc { get; set; } /// /// 工作类型,0:短期兼职,1:长期兼职,2:周末兼职 /// [XmlElement("job_type")] public string JobType { get; set; } /// /// 类型代码:兼职类型 1:传单派发 2:促销导购 3:话务客服 4:礼仪模特 5:家教助教 6:服务员 7:问卷调查 8:审核录入 9:地推拉访 10:其他 11:打包分拣 12:展会协助 13:充场 14:实习生 15:安保 16:送餐员 17:演出 18:翻译 19:校园代理 20:义工 21:食品促销 22:临时工 /// [XmlElement("part_time_type")] public string PartTimeType { get; set; } /// /// 薪资待遇 /// [XmlElement("payment")] public string Payment { get; set; } /// /// 薪资待遇备注 /// [XmlElement("payment_remark")] public string PaymentRemark { get; set; } /// /// 结算方式:0日结;1次日结; 2周结;3半月结; 4月结; 5完工结; /// [XmlElement("payment_type")] public string PaymentType { get; set; } /// /// 工资 /// [XmlElement("salary")] public string Salary { get; set; } /// /// 薪资单位:元/天;元/周;元/月(与结算方式匹配) /// [XmlElement("salary_unit")] public string SalaryUnit { get; set; } /// /// 兼职服务商职位id /// [XmlElement("service_post_id")] public string ServicePostId { get; set; } /// /// 职位供应商信息 /// [XmlElement("source_info")] public EduSourceInfo SourceInfo { get; set; } /// /// 职位特殊要求多选项目: - 普通话熟练; - 有健康证; - 自备正装; - 携带学生证; - 沟通能力强; - 形象好; - 服从安排; - 积极主动; - 认真负责; - 活泼开朗; - 吃苦耐劳; /// [XmlArray("special_demand")] [XmlArrayItem("string")] public List SpecialDemand { get; set; } /// /// 职位标题 /// [XmlElement("title")] public string Title { get; set; } /// /// 福利,1:包工作餐;2:包住宿;3:交通补助 /// [XmlArray("welfare")] [XmlArrayItem("string")] public List Welfare { get; set; } /// /// 工作地点 /// [XmlArray("work_address")] [XmlArrayItem("edu_work_address")] public List WorkAddress { get; set; } /// /// 工作时间备注 /// [XmlElement("work_time_remark")] public string WorkTimeRemark { get; set; } /// /// 每天工作时长 <以小时计> /// [XmlElement("working_hours")] public string WorkingHours { get; set; } } }