| 123456789101112131415161718192021 |
- package cn.com.lzt.toilets.service;
- import cn.com.lzt.toilets.entity.TPublicToiletEnergy;
- import cn.com.lzt.toilets.entity.TPublicToiletMaterial;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface ToiletsManagementService extends CommonService {
- void delete(TPublicToiletEnergy entity) throws Exception;
- void delete(TPublicToiletMaterial entity) throws Exception;
- Serializable save(TPublicToiletEnergy entity) throws Exception;
- Serializable save(TPublicToiletMaterial entity) throws Exception;
- void saveOrUpdate(TPublicToiletEnergy entity) throws Exception;
- void saveOrUpdate(TPublicToiletMaterial entity) throws Exception;
- }
|