1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package cn.iocoder.yudao.module.mes.service.pd.price;
|
| import cn.iocoder.yudao.module.mes.controller.admin.pd.price.vo.MesPdPriceCalcReqVO;
| import cn.iocoder.yudao.module.mes.controller.admin.pd.price.vo.MesPdPriceCalcRespVO;
|
| /**
| * MES 阶梯电价测算 Service 接口
| *
| * @author 超级管理员
| */
| public interface MesPdPriceService {
|
| /**
| * 阶梯电价测算:按用电量分档累计,叠加优惠策略
| *
| * @param reqVO 测算请求
| * @return 测算结果
| */
| MesPdPriceCalcRespVO calcPrice(MesPdPriceCalcReqVO reqVO);
|
| }
|
|