package com.goafanti.user.service; import java.util.List; import com.goafanti.common.model.LegalPersonOwnership; public interface LegalPersonOwnershipService { List selectByUid(String uid); int batchDeleteByPrimaryKey(List asList); int batchInsert(List lpo); }