2021与蓝度共同重构项目,服务端
Van333
2022-12-29 727a69f859060093e685582fa10e5de82dcc138a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
 
 
}