liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.project.comprehensiveStatistics.controller;
 
import com.dingzhuo.energy.data.model.service.IModelNodeService;
import com.dingzhuo.energy.framework.web.controller.BaseController;
import com.dingzhuo.energy.project.comprehensiveStatistics.service.processEnergyConsumptionService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
 
/**
 * 工序能耗统计
 *
 * @author sys
 * @date 2020-02-18
 */
@RestController
@RequestMapping("/statisticalData/processEnergyConsumption")
public class processEnergyConsumptionController extends BaseController {
 
    @Autowired
    private IModelNodeService modelNodeService;
    @Autowired
    private processEnergyConsumptionService processEnergyConsumptionService;
 
}