package com.landtool.lanbase.modules.org.dao; import com.landtool.lanbase.modules.org.entity.OrgUserAuth; import com.landtool.lanbase.modules.org.entity.OrgUserJoinAuth; import com.landtool.lanbase.modules.sys.dao.BaseDao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface OrgUserAuthDao extends BaseDao { void updateAuthState(@Param(value = "authId") Long authId,@Param(value = "authResult") Long authResult); List queryOrgUserJoinAuthList(Map map); int queryOrgUserJoinAuthTotal(Map map); }