提交 | 用户 | 时间
|
af72d8
|
1 |
package com.iailab.module.model.mpk.service; |
J |
2 |
|
|
3 |
|
|
4 |
import com.iailab.framework.common.page.PageData; |
|
5 |
import com.iailab.module.model.api.mcs.dto.ElectricityPriceSegmentedDTO; |
|
6 |
import com.iailab.module.model.mpk.entity.ElectricityPriceSegmentedEntity; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
import java.util.Map; |
|
10 |
|
|
11 |
/** |
|
12 |
* @description: |
|
13 |
* @author: dzd |
|
14 |
* @date: 2024/11/5 11:20 |
|
15 |
**/ |
|
16 |
public interface ElectricityPriceSegmentedService { |
|
17 |
|
|
18 |
PageData<ElectricityPriceSegmentedDTO> page(Map<String, Object> params); |
|
19 |
|
|
20 |
void create(ElectricityPriceSegmentedDTO entity); |
|
21 |
|
|
22 |
void update(ElectricityPriceSegmentedEntity entity); |
|
23 |
|
|
24 |
ElectricityPriceSegmentedEntity get(String id); |
|
25 |
|
|
26 |
void delete(String id); |
|
27 |
|
e63c53
|
28 |
void deleteByITimeId(String iTimeId); |
J |
29 |
|
af9c8a
|
30 |
List<ElectricityPriceSegmentedDTO> getElectricityPriceList(String year); |
af72d8
|
31 |
|
J |
32 |
List<ElectricityPriceSegmentedDTO> getElectricityPriceListByTime(ElectricityPriceSegmentedDTO dto); |
|
33 |
} |