doum
2026-04-03 c37ea09c23b76f2da7f075292ff273a5fb579935
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.doumee.service.business;
 
import com.doumee.core.model.LoginUserInfo;
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.model.YwElectrical;
import java.util.List;
 
/**
 * 电表设备信息Service定义
 * @author renkang
 * @date 2026/04/03
 */
public interface YwElectricalService {
    Integer create(YwElectrical ywElectrical);
    void deleteById(Integer id, LoginUserInfo user);
    void deleteByIdInBatch(List<Integer> ids, LoginUserInfo user);
    void updateById(YwElectrical ywElectrical);
    YwElectrical findById(Integer id);
    PageData<YwElectrical> findPage(PageWrap<YwElectrical> pageWrap);
}