using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiAtsPluginStatisticsJobListResponse. /// public class OapiAtsPluginStatisticsJobListResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 分页结果 /// [XmlElement("result")] public AtsPageResultDomain Result { get; set; } /// /// TopJobStatisticsVoDomain Data Structure. /// [Serializable] public class TopJobStatisticsVoDomain : TopObject { /// /// 招聘业务标识 /// [XmlElement("biz_code")] public string BizCode { get; set; } /// /// 企业id /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 职位创建人id /// [XmlElement("creator_userid")] public string CreatorUserid { get; set; } /// /// 创建时间,unix时间戳,单位毫秒 /// [XmlElement("gmt_create_mils")] public long GmtCreateMils { get; set; } /// /// 更新时间,unix时间戳,单位毫秒 /// [XmlElement("gmt_modified_mils")] public long GmtModifiedMils { get; set; } /// /// 招聘人数 /// [XmlElement("head_count")] public long HeadCount { get; set; } /// /// 职位id /// [XmlElement("job_id")] public string JobId { get; set; } /// /// 职位归属部门id /// [XmlElement("main_dept_id")] public long MainDeptId { get; set; } /// /// 职位名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 职位负责人id /// [XmlElement("owner_userid")] public string OwnerUserid { get; set; } /// /// 0:新创建 1:已发布 2:废弃 3:招满 /// [XmlElement("status")] public long Status { get; set; } } /// /// AtsPageResultDomain Data Structure. /// [Serializable] public class AtsPageResultDomain : TopObject { /// /// 是否还有数据 /// [XmlElement("has_more")] public bool HasMore { get; set; } /// /// 职位信息列表 /// [XmlArray("list")] [XmlArrayItem("top_job_statistics_vo")] public List List { get; set; } /// /// 游标,下次分页请求使用 /// [XmlElement("next_cursor")] public string NextCursor { get; set; } } } }