using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceEducateUserClickCreateModel Data Structure. /// [Serializable] public class AlipayCommerceEducateUserClickCreateModel : AopObject { /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 点击次数 /// [XmlElement("click_time")] public string ClickTime { get; set; } /// /// 点击兼职岗位所属公司名称 /// [XmlElement("company_name")] public string CompanyName { get; set; } /// /// 日期 /// [XmlElement("date")] public string Date { get; set; } /// /// 扩展字段 /// [XmlElement("features")] public string Features { get; set; } /// /// 是否报名岗位 /// [XmlElement("is_apply_job")] public string IsApplyJob { get; set; } /// /// 岗位id /// [XmlElement("job_id")] public string JobId { get; set; } /// /// 点击兼职岗位名称 /// [XmlElement("parttime_job_name")] public string ParttimeJobName { get; set; } /// /// 点击进入岗位详情页面平均停留时长 /// [XmlElement("stay_avg_time")] public string StayAvgTime { get; set; } /// /// 支付宝用户id /// [XmlElement("user_id")] public string UserId { get; set; } } }