|
|
|
@ -1,6 +1,10 @@
|
|
|
|
|
using Entity.DbModel.Station;
|
|
|
|
|
using HybirdFrameworkCore.Entity;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Repository.Station;
|
|
|
|
|
using Service.Cloud.Msg.Cloud.Resp;
|
|
|
|
|
using Service.Execute.Api;
|
|
|
|
|
using Service.Execute.Model;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace WebStarter.Controllers.Test;
|
|
|
|
@ -38,6 +42,21 @@ public class GenController : ControllerBase
|
|
|
|
|
Console.WriteLine("生成完毕");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet("CloudTestVelCheck")]
|
|
|
|
|
public Result<VehicleCertificationResp> CloudTestVelCheck()
|
|
|
|
|
{
|
|
|
|
|
VehicleCertificationResp vehicleCertificationResp = CloudApi.VehicleCheck(new RfidReadModel()
|
|
|
|
|
{
|
|
|
|
|
VelMac = "111",
|
|
|
|
|
VelNo = "LC1HMYBF6R0004575",
|
|
|
|
|
VelVin = "LC1HMYBF6R0004575",
|
|
|
|
|
}, new SwapOrder()
|
|
|
|
|
{
|
|
|
|
|
VehicleEnterTime = DateTime.Now
|
|
|
|
|
});
|
|
|
|
|
return Result<VehicleCertificationResp>.Success(vehicleCertificationResp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet("test115")]
|
|
|
|
|
public void Test115()
|
|
|
|
|
{
|
|
|
|
|