NatureOwnershipService.java 313 B

12345678910111213141516
  1. package com.goafanti.user.service;
  2. import java.util.List;
  3. import com.goafanti.common.model.NatureOwnership;
  4. public interface NatureOwnershipService {
  5. List<NatureOwnership> selectByUid(String uid);
  6. int batchDeleteByPrimaryKey(List<String> id);
  7. int batchInsert(List<NatureOwnership> no);
  8. }