NatureOwnershipServiceImpl.java 767 B

123456789101112131415161718192021222324252627
  1. package com.goafanti.user.service.impl;
  2. import java.util.List;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. import com.goafanti.common.dao.NatureOwnershipMapper;
  6. import com.goafanti.common.model.NatureOwnership;
  7. import com.goafanti.user.service.NatureOwnershipService;
  8. @Service
  9. public class NatureOwnershipServiceImpl implements NatureOwnershipService {
  10. @Autowired
  11. private NatureOwnershipMapper natureOwnershipMapper;
  12. @Override
  13. public List<NatureOwnership> selectByUid(String uid) {
  14. return natureOwnershipMapper.selectByUid(uid);
  15. }
  16. @Override
  17. public int batchDeleteByPrimaryKey(List<String> id) {
  18. return natureOwnershipMapper.batchDeleteByPrimaryKey(id);
  19. }
  20. }