sunpengfei
2025-08-12 aa7fd6fbf2ce1a674930763e8c24a7c2a0b4d0af
FlexJobApi.Core/Models/FlexJobServer/Tasks/Queries/GetTaskInfoQuery.cs
@@ -1,5 +1,4 @@
using FlexJobApi.Core.Models.Common;
using Mapster;
using Mapster;
using MediatR;
using Newtonsoft.Json;
using System;
@@ -47,13 +46,24 @@
        /// <summary>
        /// 企业全称
        /// </summary>
        [JsonProperty("EnterpriseName")]
        [JsonProperty("enterpriseName")]
        public string EnterpriseEnterpriseName { get; set; }
        /// <summary>
        /// 联系电话
        /// </summary>
        [JsonProperty("contactPhoneNumber")]
        public string EnterpriseContactPhoneNumber { get; set; }
        /// <summary>
        /// 在招岗位数量
        /// </summary>
        public int TaskCount { get; set; }
        /// <summary>
        /// 报名人数
        /// </summary>
        public int ApplyCount { get; set; }
        /// <summary>
        /// 任务名称
@@ -169,6 +179,11 @@
        /// 发布状态
        /// </summary>
        public EnumTaskReleaseStatus ReleaseStatus { get; set; }
        /// <summary>
        /// 录用状态
        /// </summary>
        public EnumTaskUserHireStatus? HireStatus { get; set; }
    }