45 lines
971 B
C#
45 lines
971 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
|
|||
|
|
using DOAN.Admin.WebApi.Filters;
|
|||
|
|
using DOAN.Service.JobKanban;
|
|||
|
|
using DOAN.Service.JobKanban.IService;
|
|||
|
|
using Aliyun.OSS;
|
|||
|
|
|
|||
|
|
//创建时间:2024-07-08
|
|||
|
|
namespace DOAN.Admin.WebApi.Controllers.JobKanban
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 客户信息
|
|||
|
|
/// </summary>
|
|||
|
|
[Verify]
|
|||
|
|
[Route("kanban/loginOrsetting")]
|
|||
|
|
public class LoginOrSetController : BaseController
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 客户信息接口
|
|||
|
|
/// </summary>
|
|||
|
|
private readonly ILoginOrSetService _LoginOrSetService;
|
|||
|
|
|
|||
|
|
public LoginOrSetController(ILoginOrSetService LoginOrSetService)
|
|||
|
|
{
|
|||
|
|
_LoginOrSetService = LoginOrSetService;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取组
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public IActionResult GetGroupList()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
var response = _LoginOrSetService.GetGroupList();
|
|||
|
|
return SUCCESS(response);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|