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 ids, LoginUserInfo user); void updateById(YwElectricalLog ywElectricalLog); YwElectricalLog findById(Integer id); PageData findPage(PageWrap pageWrap); }