You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
577 B
24 lines
577 B
6 months ago
|
using Entity.Api.Req;
|
||
|
using Entity.Api.Resp;
|
||
|
using HybirdFrameworkCore.Entity;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace WebStarter.Controllers;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 换电控制器
|
||
|
/// </summary>
|
||
|
[ApiController]
|
||
|
[Route("api/[controller]")]
|
||
|
public class SwapMonitorController : ControllerBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 首页换电状态信息
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost("GetSwapMonitorData")]
|
||
|
public async Task<Result<SwapMonitorScreenResp>> GetSwapMonitorData()
|
||
|
{
|
||
|
return Result<SwapMonitorScreenResp>.Success(null);
|
||
|
}
|
||
|
}
|