From 509f2b5d3ee9208ea6b86aae5d29194c654d67f5 Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期三, 06 八月 2025 16:59:33 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/ApiFlexJob --- FlexJobApi.Core/Entities/Users/EnterpriseAuth.cs | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 110 insertions(+), 0 deletions(-) diff --git a/FlexJobApi.Core/Entities/Users/EnterpriseAuth.cs b/FlexJobApi.Core/Entities/Users/EnterpriseAuth.cs new file mode 100644 index 0000000..c37a6fc --- /dev/null +++ b/FlexJobApi.Core/Entities/Users/EnterpriseAuth.cs @@ -0,0 +1,110 @@ +锘縰sing System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FlexJobApi.Core +{ + /// <summary> + /// 浼佷笟璁よ瘉 + /// </summary> + public class EnterpriseAuth : CommonEntity + { + /// <summary> + /// 浼佷笟璁よ瘉鏂瑰紡 + /// </summary> + public EnumEnterpriseRealMethod? EnterpriseRealMethod { get; set; } + + /// <summary> + /// 浼佷笟鍏ㄧО + /// </summary> + [Required] + [MaxLength(128)] + public string EnterpriseName { get; set; } + + /// <summary> + /// 缁熶竴绀句細淇$敤浠g爜 + /// </summary> + [Required] + [MaxLength(18)] + public string SocietyCreditCode { get; set; } + + /// <summary> + /// 钀ヤ笟鎵х収鐓х墖 + /// </summary> + public string LicenseImage { get; set; } + + /// <summary> + /// 娉曚汉濮撳悕 + /// </summary> + [MaxLength(32)] + public string LegalPerson { get; set; } + + /// <summary> + /// 娉曚汉韬唤璇佸彿 + /// </summary> + [MaxLength(18)] + public string LegalIdentity { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉瀹炲悕鏂瑰紡 + /// </summary> + public EnumPersonalRealMethod? PersonalRealMethod { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉濮撳悕 + /// </summary> + [MaxLength(32)] + public string Name { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉韬唤璇佸彿 + /// </summary> + [MaxLength(18)] + public string Identity { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉韬唤璇佷汉鍍忛潰 + /// </summary> + public string IdentityImg { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉韬唤璇佸浗寰介潰 + /// </summary> + public string IdentityBackImg { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉閾惰鍗″彿 + /// </summary> + [MaxLength(32)] + public string BankCard { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉閾惰鍗$収鐗� + /// </summary> + public string BankCardImg { get; set; } + + /// <summary> + /// 娉曚汉鎴栫粡鍔炰汉鎵嬫満鍙� + /// </summary> + [MaxLength(11)] + public string PhoneNumber { get; set; } + + /// <summary> + /// 鏄惁濮旀墭缁忓姙浜� + /// </summary> + public bool? Proxy { get; set; } + + /// <summary> + /// 浼佷笟鎺堟潈涔� + /// </summary> + public string ProxyPowerAttorneyUrl { get; set; } + + /// <summary> + /// 鏄惁瀹炲悕 + /// </summary> + public bool IsReal { get; set; } + } +} -- Gitblit v1.9.1