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.YwElectricalLog;
import java.util.List;
 
/**
 * 电器类操作日志Service定义
 * @author renkang
 * @date 2026/04/03
 */
public interface YwElectricalLogService {
    Integer create(YwElectricalLog ywElectricalLog);
    void deleteById(Integer id, LoginUserInfo user);
    void deleteByIdInBatch(List<Integer> ids, LoginUserInfo user);
    void updateById(YwElectricalLog ywElectricalLog);
    YwElectricalLog findById(Integer id);
    PageData<YwElectricalLog> findPage(PageWrap<YwElectricalLog> pageWrap);
}