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);
|
}
|