using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoEduCampusJobdeliverModifyModel Data Structure. /// [Serializable] public class AlipayEcoEduCampusJobdeliverModifyModel : AopObject { /// /// 用户id /// [JsonProperty("alipay_user_id")] public string AlipayUserId { get; set; } /// /// 补充文案 /// [JsonProperty("comment")] public string Comment { get; set; } /// /// 备用字段 /// [JsonProperty("content_var")] public string ContentVar { get; set; } /// /// 面试地点 /// [JsonProperty("interview_location")] public string InterviewLocation { get; set; } /// /// 面试时间(毫秒) /// [JsonProperty("interview_time")] public string InterviewTime { get; set; } /// /// 纬度 /// [JsonProperty("latitude")] public string Latitude { get; set; } /// /// 经度 /// [JsonProperty("longitude")] public string Longitude { get; set; } /// /// 职位来源方编码 /// [JsonProperty("source_code")] public string SourceCode { get; set; } /// /// 职位来源方id /// [JsonProperty("source_id")] public string SourceId { get; set; } /// /// 投递状态: 4被查看;5待处理;6邀面试;7已拒绝;8已录用;9已结束 /// [JsonProperty("status")] public long Status { get; set; } /// /// 状态更新时间(毫秒) /// [JsonProperty("update_time")] public string UpdateTime { get; set; } } }