File was renamed from FlexJobApi.Core/Models/User/Enterprises/Queries/GetEnterpriseQuery.cs |
| | |
| | | /// <summary> |
| | | /// 企业全称 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | public string EnterpriseName => EnterpriseAuth.EnterpriseName; |
| | | public string EnterpriseName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 统一社会信用代码 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | public string SocietyCreditCode => EnterpriseAuth.SocietyCreditCode; |
| | | public string SocietyCreditCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法人姓名 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | public string LegalPerson => EnterpriseAuth.LegalPerson; |
| | | public string LegalPerson { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法人身份证号 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | public string LegalIdentity => EnterpriseAuth.LegalIdentity; |
| | | |
| | | /// <summary> |
| | | /// 企业认证 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore, Swashbuckle.AspNetCore.Annotations.SwaggerIgnore] |
| | | public SaveEnterpriseCommandAuth EnterpriseAuth { get; set; } |
| | | public string LegalIdentity { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 所在省份编号 |
| | |
| | | /// 账号 |
| | | /// </summary> |
| | | public string UserName { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 查询企业详情-结果-企业认证 |
| | | /// </summary> |
| | | public class GetEnterpriseQueryResultAuth |
| | | { |
| | | /// <summary> |
| | | /// 企业全称 |
| | | /// </summary> |
| | | public string EnterpriseName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 统一社会信用代码 |
| | | /// </summary> |
| | | public string SocietyCreditCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法人姓名 |
| | | /// </summary> |
| | | public string LegalPerson { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法人身份证号 |
| | | /// </summary> |
| | | public string LegalIdentity { get; set; } |
| | | } |
| | | } |