185 lines
4.9 KiB
C#
185 lines
4.9 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipayEcoEduJzPostPublishModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class AlipayEcoEduJzPostPublishModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 年龄要求范围
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("age_demand")]
|
|||
|
|
public EduAgeDemand AgeDemand { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工资/提成信息备注
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("commission")]
|
|||
|
|
public string Commission { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 客服联系方式
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("company_contact")]
|
|||
|
|
public string CompanyContact { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商户 Logo
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("company_logo")]
|
|||
|
|
public string CompanyLogo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 职位所属公司名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("company_name")]
|
|||
|
|
public string CompanyName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 联系方式 手机座机
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("contact_phone")]
|
|||
|
|
public string ContactPhone { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工作结束的日期
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("date_end")]
|
|||
|
|
public string DateEnd { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工作开始的日期
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("date_start")]
|
|||
|
|
public string DateStart { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报名截止日期
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("deadline")]
|
|||
|
|
public string Deadline { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 性别要求 0:不限;1:男;2:女
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("gender")]
|
|||
|
|
public string Gender { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 招聘人数
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("hire_number")]
|
|||
|
|
public string HireNumber { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 有无提成0:没有1:有
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("is_commission")]
|
|||
|
|
public string IsCommission { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 职位描述:工作内容、岗位要求
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("job_desc")]
|
|||
|
|
public string JobDesc { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工作类型,0:短期兼职,1:长期兼职,2:周末兼职
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("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>
|
|||
|
|
[JsonProperty("part_time_type")]
|
|||
|
|
public string PartTimeType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 薪资待遇
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payment")]
|
|||
|
|
public string Payment { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 薪资待遇备注
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payment_remark")]
|
|||
|
|
public string PaymentRemark { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 结算方式:0日结;1次日结; 2周结;3半月结; 4月结; 5完工结;
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payment_type")]
|
|||
|
|
public string PaymentType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工资
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("salary")]
|
|||
|
|
public string Salary { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 薪资单位:元/天;元/周;元/月(与结算方式匹配)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("salary_unit")]
|
|||
|
|
public string SalaryUnit { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 兼职服务商职位id
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("service_post_id")]
|
|||
|
|
public string ServicePostId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 职位供应商信息
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("source_info")]
|
|||
|
|
public EduSourceInfo SourceInfo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 职位特殊要求多选项目: - 普通话熟练; - 有健康证; - 自备正装; - 携带学生证; - 沟通能力强; - 形象好; - 服从安排; - 积极主动; - 认真负责; - 活泼开朗; - 吃苦耐劳;
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("special_demand")]
|
|||
|
|
|
|||
|
|
public List<string> SpecialDemand { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 职位标题
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("title")]
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 福利,1:包工作餐;2:包住宿;3:交通补助
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("welfare")]
|
|||
|
|
|
|||
|
|
public List<string> Welfare { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工作地点
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("work_address")]
|
|||
|
|
|
|||
|
|
public List<EduWorkAddress> WorkAddress { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工作时间备注
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("work_time_remark")]
|
|||
|
|
public string WorkTimeRemark { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 每天工作时长 <以小时计>
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("working_hours")]
|
|||
|
|
public string WorkingHours { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|