sunpengfei
2025-08-12 e1441e1a14841f322af3e1ca65490fb8b7993970
FlexJobApi.Core/Models/FlexJobServer/Tasks/Queries/GetTaskInfoQuery.cs
@@ -1,6 +1,6 @@
using FlexJobApi.Core.Models.Common;
using Mapster;
using Mapster;
using MediatR;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@@ -46,12 +46,24 @@
        /// <summary>
        /// 企业全称
        /// </summary>
        public string EnterpriseName { get; set; }
        [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>
        /// 任务名称
@@ -167,6 +179,11 @@
        /// 发布状态
        /// </summary>
        public EnumTaskReleaseStatus ReleaseStatus { get; set; }
        /// <summary>
        /// 录用状态
        /// </summary>
        public EnumTaskUserHireStatus? HireStatus { get; set; }
    }