From 709f1608dabc777daad602e0ffc00ad698c0429c Mon Sep 17 00:00:00 2001 From: yanjinhui <3306209981@qq.com> Date: 星期四, 12 六月 2025 19:25:07 +0800 Subject: [PATCH] 重新上传伸缩杆后端 --- 项目代码/后端/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_TeamCategory.cs | 24 ++++++++++++ 项目代码/后端/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/System/Sys_TenantController.cs | 33 ++++++++++++++++ 项目代码/后端/WCS/license/license.key | 1 项目代码/后端/WCS/WIDESEAWCS_Client/src/assets/imgs/log.png | 0 项目代码/后端/WCS/license/license.ini | 2 + 项目代码/初始化.txt | 1 项目代码/后端/WCS/WIDESEAWCS_Client/public/Outbound.png | 0 7 files changed, 61 insertions(+), 0 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\210\235\345\247\213\345\214\226.txt" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\210\235\345\247\213\345\214\226.txt" new file mode 100644 index 0000000..9d07aa0 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\210\235\345\247\213\345\214\226.txt" @@ -0,0 +1 @@ +111 \ No newline at end of file diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Client/public/Outbound.png" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Client/public/Outbound.png" new file mode 100644 index 0000000..5fe6465 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Client/public/Outbound.png" Binary files differ diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Client/src/assets/imgs/log.png" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Client/src/assets/imgs/log.png" new file mode 100644 index 0000000..8397330 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Client/src/assets/imgs/log.png" Binary files differ diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_TeamCategory.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_TeamCategory.cs" new file mode 100644 index 0000000..c6116bf --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_TeamCategory.cs" @@ -0,0 +1,24 @@ +锘縰sing SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using WIDESEAWCS_Core.DB.Models; + +namespace WIDESEAWCS_Model.Models +{ + [SugarTable("Dt_TeamCategory", "鐝粍绫诲埆琛�")] + public class Dt_TeamCategory : BaseEntity + { + /// <summary> + /// 涓婚敭 + /// </summary> + [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] + public int Id { get; set; } + + + [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "绫诲埆鍚嶅瓧")] + public string TeamName { get; set; } + } +} diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/System/Sys_TenantController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/System/Sys_TenantController.cs" new file mode 100644 index 0000000..17930d9 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/System/Sys_TenantController.cs" @@ -0,0 +1,33 @@ +锘� +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WIDESEAWCS_Core; +using WIDESEAWCS_Core.BaseController; +using WIDESEAWCS_Core.Const; +using WIDESEAWCS_Core.Helper; +using WIDESEAWCS_Core.HttpContextUser; +using WIDESEAWCS_ISystemServices; +using WIDESEAWCS_Model; +using WIDESEAWCS_Model.Models; + +namespace WIDESEAWCS_WCSServer.Controllers +{ + [Route("api/tenant")] + [ApiController] + public class Sys_TenantController : ApiBaseController<ISys_TenantService, Sys_Tenant> + { + private readonly IHttpContextAccessor _httpContextAccessor; + + public Sys_TenantController(ISys_TenantService tenantService, IHttpContextAccessor httpContextAccessor) : base(tenantService) + { + _httpContextAccessor = httpContextAccessor; + } + + [HttpGet, Route("initTenantInfo"), AllowAnonymous] + public WebResponseContent InitTenantInfo(string tenantName, int tenantType) + { + return Service.InitTenantInfo(tenantName, tenantType); + } + } +} diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/license/license.ini" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/license/license.ini" new file mode 100644 index 0000000..f28c170 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/license/license.ini" @@ -0,0 +1,2 @@ +20A020F61653324E35BDC508C5E6D6A9F4B18710EB11F118D2AB4FF0B551CD90D7C6FBCCD063443D1A5D9713C12A965D632CFE78C845CDCE9CBFB08BE628EA9DE57DD7CBF84AF3F63136B7ECBB4F94CCE32A2A49C9586FDC1FF96C7B874E76751BAAA8BB13A78E91F07BF06DA61B75F35C4C211BBB009728012DA122212CDF270D8152CBC33DC9C8400C060BB23FB9949CF88F8B760DBBA1D1DF8B0D253FD158281B26BBF526D9C13F0978B8EA87666BCC667853EF7E3A6ACC9FB009E1D109B77653D9AFEDAB3D57551CB163E490386E7B66CE9CB98A1FD8D716F8C5F9B182EBB92E8EDC3E6687FCCF86F2160BF235D6195448F819E9FA523C8C7EBEDEFFF482 +75B9197CB2ECA6BDA813C3357138C710B0494E84000911985A4382CB67260A8A5A187EC4BA3970FD79D3033CA30A93C35ED61AB9E77C3EB980221F0FD4633D5ADE84363E748E05EA15413D2F1177B73356213B59830572D52A846FE94B6F1B27C2EC3136B9EAB4DEF249C4570472DF01980889BBFD0B9E36175EA1E4258BDDAEB545DA0C34EE455525D78E4294771707C06C4507EEEAC2B68367782077763CCC5FAF2AFEC1B11AF97FB435FACFF6D8333617252773B33D843CD61B9F3AC2D469A41012C213F63F8E1EDA2483CFF37223CF061D9A7E589EA140B2A0483AE13ACEC0293C2DF387C571090AEF76182BA79EE9DE7B50AE15FF6BD558F17956E89AD5 diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/license/license.key" "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/license/license.key" new file mode 100644 index 0000000..b5cbef4 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/\345\220\216\347\253\257/WCS/license/license.key" @@ -0,0 +1 @@ +X6YL-JKEA-CJHP-DETV \ No newline at end of file -- Gitblit v1.9.3