package com.goafanti.user.service; import java.util.List; import com.goafanti.common.model.NatureOwnership; public interface NatureOwnershipService { List selectByUid(String uid); int batchDeleteByPrimaryKey(List id); int batchInsert(List no); }