sunpengfei
2025-08-19 e94d90fd7d2ec6fcb41fb6aa6fc28e3f9d39ba95
FlexJobApi.Core/Models/UserServer/Users/Queries/GetEnterpriseLoginInfoQuery.cs
@@ -1,4 +1,5 @@
using MediatR;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@@ -37,9 +38,15 @@
        public string Name { get; set; }
        /// <summary>
        /// 性别
        /// </summary>
        public EnumUserGender? Gender { get; set; }
        /// <summary>
        /// 企业全称
        /// </summary>
        public string EnterpriseName { get; set; }
        [JsonProperty("enterpriseName")]
        public string EnterpriseEnterpriseName { get; set; }
        /// <summary>
        /// 角色
@@ -54,11 +61,11 @@
        /// <summary>
        /// 我的收藏
        /// </summary>
        public int CollectUsers { get; set; }
        public int CollectedUserCount { get; set; }
        /// <summary>
        /// 联系记录
        /// </summary>
        public int ContactRecords { get; set; }
        public int ContactedRecordCount { get; set; }
    }
}