105 lines
3.1 KiB
C#
105 lines
3.1 KiB
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
using ZR.Model.Dto;
|
|||
|
|
using ZR.Model.Business;
|
|||
|
|
using ZR.Service.Business.IBusinessService;
|
|||
|
|
using ZR.Admin.WebApi.Extensions;
|
|||
|
|
using ZR.Admin.WebApi.Filters;
|
|||
|
|
using ZR.Service.MES.dc.IService;
|
|||
|
|
using ZR.Model.dc;
|
|||
|
|
|
|||
|
|
//创建时间:2025-09-21
|
|||
|
|
namespace ZR.Admin.WebApi.Controllers
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备数据上传
|
|||
|
|
/// </summary>
|
|||
|
|
[Route("business/DeviceUploadData")]
|
|||
|
|
public class DeviceUploadDataController : BaseController
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接口
|
|||
|
|
/// </summary>
|
|||
|
|
private readonly IDeviceUploadDataService _DeviceUploadDataService;
|
|||
|
|
|
|||
|
|
public DeviceUploadDataController(IDeviceUploadDataService DeviceUploadDataService)
|
|||
|
|
{
|
|||
|
|
_DeviceUploadDataService = DeviceUploadDataService;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询列表
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="parm"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpGet("list")]
|
|||
|
|
public IActionResult QueryDeviceUploadData([FromQuery] DeviceUploadDataQueryDto parm)
|
|||
|
|
{
|
|||
|
|
var response = _DeviceUploadDataService.GetList(parm);
|
|||
|
|
return SUCCESS(response);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询详情
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="Id"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpGet("{Id}")]
|
|||
|
|
public IActionResult GetDeviceUploadData(long Id)
|
|||
|
|
{
|
|||
|
|
var response = _DeviceUploadDataService.GetInfo(Id);
|
|||
|
|
|
|||
|
|
var info = response.Adapt<DeviceUploadData>();
|
|||
|
|
return SUCCESS(info);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 添加
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpPost]
|
|||
|
|
[Log(Title = "", BusinessType = BusinessType.INSERT)]
|
|||
|
|
public IActionResult AddDeviceUploadData([FromBody] DeviceUploadDataDto parm)
|
|||
|
|
{
|
|||
|
|
var modal = parm.Adapt<DeviceUploadData>().ToCreate(HttpContext);
|
|||
|
|
|
|||
|
|
var response = _DeviceUploadDataService.AddDeviceUploadData(modal);
|
|||
|
|
|
|||
|
|
return SUCCESS(response);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpPut]
|
|||
|
|
[Log(Title = "", BusinessType = BusinessType.UPDATE)]
|
|||
|
|
public IActionResult UpdateDeviceUploadData([FromBody] DeviceUploadDataDto parm)
|
|||
|
|
{
|
|||
|
|
var modal = parm.Adapt<DeviceUploadData>().ToUpdate(HttpContext);
|
|||
|
|
var response = _DeviceUploadDataService.UpdateDeviceUploadData(modal);
|
|||
|
|
|
|||
|
|
return ToResponse(response);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpDelete("{ids}")]
|
|||
|
|
[Log(Title = "", BusinessType = BusinessType.DELETE)]
|
|||
|
|
public IActionResult DeleteDeviceUploadData(string ids)
|
|||
|
|
{
|
|||
|
|
int[] idsArr = Tools.SpitIntArrary(ids);
|
|||
|
|
if (idsArr.Length <= 0) { return ToResponse(ApiResult.Error($"删除失败Id 不能为空")); }
|
|||
|
|
|
|||
|
|
var response = _DeviceUploadDataService.Delete(idsArr);
|
|||
|
|
|
|||
|
|
return ToResponse(response);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|