NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoEduJzPostPublishMo...

185 lines
5.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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