1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.iailab.module.ansteel.power.service;
|
| import com.iailab.module.ansteel.api.dto.PowerPriceMainDTO;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * @author lirm
| * @since 1.0.0 2025-05-21
| */
| public interface PowerPriceMainService {
|
| List<PowerPriceMainDTO> list(Map<String, Object> params);
|
| Boolean save(PowerPriceMainDTO mainDTO);
|
| Boolean update(PowerPriceMainDTO mainDTO);
| }
|
|