From 4008c7e22c9c01eb653b04f934990486df622654 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期一, 14 七月 2025 12:21:35 +0800 Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/FZCZTB --- Admin.NET/FZCTB.NET.API.Application/User/DTO/DTOS.cs | 200 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 200 insertions(+), 0 deletions(-) diff --git a/Admin.NET/FZCTB.NET.API.Application/User/DTO/DTOS.cs b/Admin.NET/FZCTB.NET.API.Application/User/DTO/DTOS.cs new file mode 100644 index 0000000..952a56b --- /dev/null +++ b/Admin.NET/FZCTB.NET.API.Application/User/DTO/DTOS.cs @@ -0,0 +1,200 @@ +锘�// Admin.NET 椤圭洰鐨勭増鏉冦�佸晢鏍囥�佷笓鍒╁拰鍏朵粬鐩稿叧鏉冨埄鍧囧彈鐩稿簲娉曞緥娉曡鐨勪繚鎶ゃ�備娇鐢ㄦ湰椤圭洰搴旈伒瀹堢浉鍏虫硶寰嬫硶瑙勫拰璁稿彲璇佺殑瑕佹眰銆� +// +// 鏈」鐩富瑕侀伒寰� MIT 璁稿彲璇佸拰 Apache 璁稿彲璇侊紙鐗堟湰 2.0锛夎繘琛屽垎鍙戝拰浣跨敤銆傝鍙瘉浣嶄簬婧愪唬鐮佹爲鏍圭洰褰曚腑鐨� LICENSE-MIT 鍜� LICENSE-APACHE 鏂囦欢銆� +// +// 涓嶅緱鍒╃敤鏈」鐩粠浜嬪嵄瀹冲浗瀹跺畨鍏ㄣ�佹壈涔辩ぞ浼氱З搴忋�佷镜鐘粬浜哄悎娉曟潈鐩婄瓑娉曞緥娉曡绂佹鐨勬椿鍔紒浠讳綍鍩轰簬鏈」鐩簩娆″紑鍙戣�屼骇鐢熺殑涓�鍒囨硶寰嬬籂绾峰拰璐d换锛屾垜浠笉鎵挎媴浠讳綍璐d换锛� + +using FZCZTB.NET.MD.ConfigMd; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FZCTB.NET.API.Application.User.DTO; +/// <summary> +/// 浼佷笟绫诲瀷 +/// </summary> +public class EnterpriseTypeVM +{ + /// <summary> + /// id + /// </summary> + [SugarColumn(IsTreeKey = true)] //璁剧疆鍏宠仈瀛楁 + public long Id { get; set; } + + /// <summary> + /// 鍚嶇О + /// </summary> + + public string Name { get; set; } + /// <summary> + /// 浠g爜 + /// </summary> + + public string Code { get; set; } + /// <summary> + /// 鐖� + /// </summary> + + public long ParentId { get; set; }//鐖剁骇瀛楁 + /// <summary> + /// 瀛愮被 + /// </summary> + + public List<FBS_EnterpriseType> Child { get; set; } +} + +/// <summary> +/// 鐢ㄦ埛瑙掕壊璧勬枡 +/// </summary> +public class CusExtendDto +{ + + /// <summary> + /// 涓婚敭 + /// </summary> + + public long ? Id { get; set; } + + /// <summary> + /// 浼佷笟绫诲瀷 浠庝紒涓氱被鍨嬩腑閫夋嫨 鏉ユ簮浼佷笟绫诲瀷 + /// </summary> + + public string? EnterpriseType { get; set; } + + + /// <summary> + /// 浜ゆ槗涓讳綋 浠g爜 鍚岃鑹蹭唬鐮� + /// </summary> + [Required(ErrorMessage = "浜ゆ槗涓讳綋浠g爜涓哄繀濉」")] + public string? TransactionCode { get; set; } + + /// <summary> + /// 浜ゆ槗涓讳綋鍚嶇О + /// </summary> + public string TransactionName { get; set; } + + /// <summary> + /// 钀ヤ笟鎵х収鏂囦欢璺緞 + /// </summary> + + public string BusinessLicense { get; set; } + + /// <summary> + /// 浼佷笟鍚嶇О + /// </summary> + + public string EnterpriseName { get; set; } + + /// <summary> + /// 缁熶竴绀句細淇$敤浠g爜 + /// </summary> + + public string UnifiedSocialCreditCode { get; set; } + + /// <summary> + /// 娉ㄥ唽璧勯噾锛堝崟浣嶏細涓囧厓 锛� + /// </summary> + + public decimal RegisteredCapital { get; set; } + + /// <summary> + /// 娉曞畾浠h〃浜哄鍚� + /// </summary> + + public string LegalRepresentativeName { get; set; } + + /// <summary> + /// 娉曞畾浠h〃浜鸿韩浠借瘉鏂囦欢璺緞 + /// </summary> + + public string LegalRepresentativeIdCard { get; set; } + + /// <summary> + /// 娉曞畾浠h〃浜鸿韩浠借瘉鍙风爜 + /// </summary> + + public string LegalRepresentativeIdNumber { get; set; } + + /// <summary> + /// 娉曞畾浠h〃浜鸿仈绯荤數璇� + /// </summary> + [Phone(ErrorMessage = "鑱旂郴鐢佃瘽鏍煎紡涓嶆纭�")] + + public string? LegalRepresentativePhone { get; set; } + + /// <summary> + /// 浼佷笟浣忔墍锛堜笅鎷夐�夋嫨锛岄渶缁撳悎瀹為檯鍙�夊�硷紝鍏堝瓧绗︿覆鎺ユ敹 锛� + /// </summary> + + public string Residence { get; set; } + + /// <summary> + /// 浼佷笟鑱旂郴鐢佃瘽 + /// </summary> + + [Phone(ErrorMessage = "鑱旂郴鐢佃瘽鏍煎紡涓嶆纭�")] + public string? EnterprisePhone { get; set; } + + /// <summary> + /// 浼佷笟鎴愮珛鏃堕棿 + /// </summary> + + public DateTime EstablishmentTime { get; set; } + + /// <summary> + /// 浼佷笟涓昏惀涓氬姟 + /// </summary> + + public string MainBusiness { get; set; } + + /// <summary> + /// 浼佷笟閭 + /// </summary> + + [SugarColumn(ColumnDescription = "浼佷笟閭")] + public string EnterpriseEmail { get; set; } + + /// <summary> + /// 涓氬姟缁忓姙浜哄鍚� + /// </summary> + + public string OperatorName { get; set; } + + /// <summary> + /// 涓氬姟缁忓姙浜鸿韩浠借瘉鏂囦欢璺緞鎴栨爣璇嗭紙涓婁紶鍚庡瓨鍌ㄤ俊鎭級 + /// </summary> + + + public string OperatorIdCard { get; set; } + + /// <summary> + /// 涓氬姟缁忓姙浜鸿韩浠借瘉鍙风爜 + /// </summary> + + + public string OperatorIdNumber { get; set; } + + /// <summary> + /// 涓氬姟缁忓姙浜鸿仈绯荤數璇� + /// </summary> + + [Phone(ErrorMessage = "鑱旂郴鐢佃瘽鏍煎紡涓嶆纭�")] + public string OperatorPhone { get; set; } + + /// <summary> + /// 浼佷笟寮�鎴疯 + /// </summary> + + + public string BankName { get; set; } + + /// <summary> + /// 浼佷笟閾惰璐﹀彿 + /// </summary> + public string BankAccount { get; set; } +} + \ No newline at end of file -- Gitblit v1.9.1