sunpengfei
2025-08-13 c1bff84f284ee912a3db6b866be3916e1d762a90
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,8 +179,56 @@
        /// 发布状态
        /// </summary>
        public EnumTaskReleaseStatus ReleaseStatus { get; set; }
        /// <summary>
        /// 录用状态
        /// </summary>
        public EnumTaskUserHireStatus? HireStatus { get; set; }
        /// <summary>
        /// 我的报名列表状态
        /// </summary>
        public GetTaskInfoQueryResultApplyButton? ApplyButton { get; set; }
        /// <summary>
        /// 我的已录用列表状态
        /// </summary>
        public GetTaskInfoQueryResultHireButton? HireButton { get; set; }
    }
    /// <summary>
    /// 我的报名列表-详情-按钮类型
    /// </summary>
    public enum GetTaskInfoQueryResultApplyButton
    {
        /// <summary>
        /// 待确认
        /// </summary>
        WaitHire = 10,
        /// <summary>
        /// 去签约
        /// </summary>
        WaitSignContract = 20
    }
    /// <summary>
    /// 我的录用列表-详情-按钮类型
    /// </summary>
    public enum GetTaskInfoQueryResultHireButton
    {
        /// <summary>
        /// 申请验收
        /// </summary>
        ApplyCheckReceive = 1,
        /// <summary>
        /// 进行中
        /// </summary>
        InProcess = 10,
        /// <summary>
        /// 已完成
        /// </summary>
        Completed = 20
    }
    /// <summary>
    /// 查询任务详情-结果-福利