using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoEduCampusJobPublishModel Data Structure. /// [Serializable] public class AlipayEcoEduCampusJobPublishModel : AopObject { /// /// 过期时间(毫秒数) /// [JsonProperty("gmt_expired")] public string GmtExpired { get; set; } /// /// 刷新时间(毫秒数) /// [JsonProperty("gmt_refresh")] public string GmtRefresh { get; set; } /// /// 职位来源方编码 /// [JsonProperty("source_code")] public string SourceCode { get; set; } /// /// 职位在合作方的ID /// [JsonProperty("source_id")] public string SourceId { get; set; } } }