zss
2023-09-25 d1ea726be5628c46fb6be700a0197002d55d39f1
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
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yuanchu.mom.pojo.MeteringPlan;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-08-16 11:42:31
 */
public interface MeteringPlanService extends IService<MeteringPlan> {
 
    @Transactional(rollbackFor = Exception.class)
    Integer addMeteringPlan(MeteringPlan meteringPlan);
 
    List<Map<String, Object>> selectUnit();
 
    Map<String, Object> selectMeteringTable(Integer pageNo, Integer pageSize, String code, String meteringUnit);
 
    Object standingBook(Integer pageNo, Integer pageSize,Integer measureId, Boolean accountOrPlan);
}