PlatformAreaServiceImpl.java 834 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.bizmatics.service.impl;
  2. import com.bizmatics.model.PlatformArea;
  3. import com.bizmatics.persistence.mapper.PlatformAreaMapper;
  4. import com.bizmatics.service.PlatformAreaService;
  5. import com.bizmatics.common.mvc.base.AbstractCrudService;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * <p>
  9. * 服务实现类
  10. * </p>
  11. *
  12. * @author ya
  13. * @since 2021-09-29
  14. */
  15. @Service
  16. public class PlatformAreaServiceImpl extends AbstractCrudService<PlatformAreaMapper, PlatformArea> implements PlatformAreaService {
  17. @Override
  18. public void platformAreaAdd(PlatformArea platformArea){
  19. platformArea.setEnable(1);
  20. this.save(platformArea);
  21. }
  22. @Override
  23. public void platformAreaUpdate(PlatformArea platformArea){
  24. this.updateById(platformArea);
  25. }
  26. public void platformAreaList(){
  27. }
  28. }