ToiletsManagementServiceImpl.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.lzt.toilets.service.impl;
  2. import cn.com.lzt.toilets.entity.TPublicToiletEnergy;
  3. import cn.com.lzt.toilets.entity.TPublicToiletMaterial;
  4. import cn.com.lzt.toilets.service.ToiletsManagementService;
  5. import org.jeecgframework.core.common.service.impl.CommonServiceImpl;
  6. import org.springframework.stereotype.Service;
  7. import java.io.Serializable;
  8. @Service("ToiletsManagementService")
  9. public class ToiletsManagementServiceImpl extends CommonServiceImpl implements ToiletsManagementService {
  10. @Override
  11. public void delete(TPublicToiletEnergy entity) throws Exception {
  12. super.delete(entity);
  13. }
  14. @Override
  15. public void delete(TPublicToiletMaterial entity) throws Exception {
  16. super.delete(entity);
  17. }
  18. @Override
  19. public Serializable save(TPublicToiletEnergy entity) throws Exception {
  20. Serializable t = super.save(entity);
  21. return t;
  22. }
  23. @Override
  24. public Serializable save(TPublicToiletMaterial entity) throws Exception {
  25. Serializable t = super.save(entity);
  26. return t;
  27. }
  28. @Override
  29. public void saveOrUpdate(TPublicToiletEnergy entity) throws Exception {
  30. super.saveOrUpdate(entity);
  31. }
  32. @Override
  33. public void saveOrUpdate(TPublicToiletMaterial entity) throws Exception {
  34. super.saveOrUpdate(entity);
  35. }
  36. }