WMS
dengjunjie
2024-10-17 212af0b4bbc0f11e0b552d1bc3a4a73e52127e02
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/System/Sys_TenantController.cs
@@ -1,5 +1,18 @@
namespace WIDESEA_WMSServer.Controllers;

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_Core.Const;
using WIDESEA_Core.Helper;
using WIDESEA_Core.HttpContextUser;
using WIDESEA_ISystemService;
using WIDESEA_Model;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers
{
[Route("api/tenant")]
[ApiController]
public class Sys_TenantController : ApiBaseController<ISys_TenantService, Sys_Tenant>
@@ -17,3 +30,4 @@
        return Service.InitTenantInfo(tenantName, tenantType);
    }
}
}