| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package cn.com.lzt.toilets.service.impl;
- import cn.com.lzt.toilets.entity.TPublicToiletEnergy;
- import cn.com.lzt.toilets.entity.TPublicToiletMaterial;
- import cn.com.lzt.toilets.service.ToiletsManagementService;
- import org.jeecgframework.core.common.service.impl.CommonServiceImpl;
- import org.springframework.stereotype.Service;
- import java.io.Serializable;
- @Service("ToiletsManagementService")
- public class ToiletsManagementServiceImpl extends CommonServiceImpl implements ToiletsManagementService {
- @Override
- public void delete(TPublicToiletEnergy entity) throws Exception {
- super.delete(entity);
- }
- @Override
- public void delete(TPublicToiletMaterial entity) throws Exception {
- super.delete(entity);
- }
- @Override
- public Serializable save(TPublicToiletEnergy entity) throws Exception {
- Serializable t = super.save(entity);
- return t;
- }
- @Override
- public Serializable save(TPublicToiletMaterial entity) throws Exception {
- Serializable t = super.save(entity);
- return t;
- }
- @Override
- public void saveOrUpdate(TPublicToiletEnergy entity) throws Exception {
- super.saveOrUpdate(entity);
- }
- @Override
- public void saveOrUpdate(TPublicToiletMaterial entity) throws Exception {
- super.saveOrUpdate(entity);
- }
- }
|