11
whywhyo
2023-05-16 b0b43e2ac0ba96117b10bf722793f050ea94b200
zhang-content/src/main/java/com/ruoyi/service/ZInfoUserService.java
@@ -2,6 +2,8 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZInfoUser;
import com.ruoyi.domain.ZfRelation;
import com.ruoyi.domain.dto.EmpowerDto;
import java.util.List;
@@ -20,4 +22,20 @@
    List<ZInfoUser> selectByCondition(ZInfoUser zInfoUser);
    AjaxResult searchMyRelation(Long userId);
    AjaxResult addRelation(ZfRelation zfRelation);
    AjaxResult updateRelation(ZfRelation zfRelation);
    AjaxResult deleteRelation(Long[] ids);
    AjaxResult empower(EmpowerDto empowerDto);
    AjaxResult listWithTree(Integer depth);
    AjaxResult addParent(Long fatherId, Long motherId);
    AjaxResult listAllExceptAdmin();
    AjaxResult listMySelfAndSpouse(Long id);
}