package com.sandu.ximon.admin.controller;
|
|
|
|
import cn.hutool.db.PageResult;
|
import com.baomidou.mybatisplus.extension.api.R;
|
import com.sandu.ximon.admin.service.PlcReportDataService;
|
import com.sandu.ximon.dao.domain.PlcReportData;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.io.Serializable;
|
|
/**
|
* PLC上报数据表(PlcReportData)表控制层
|
*
|
* @author van
|
* @since 2022-12-16 10:54:58
|
*/
|
@Api(tags = "PLC上报数据表(plcReportData)" , value = "PLC上报数据表(PlcReportData)")
|
@RestController
|
@RequestMapping("/admin/plcReportData")
|
public class PlcReportDataController {
|
/**
|
* 服务对象
|
*/
|
@Autowired
|
private PlcReportDataService plcReportDataService;
|
|
|
}
|