feiyu02
2024-08-15 196bb14112448857a885e32dc4149e308e00b01a
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/AuthService.kt
@@ -2,6 +2,7 @@
import cn.flightfeather.supervision.domain.entity.Company
import cn.flightfeather.supervision.domain.entity.PersonalInfo
import cn.flightfeather.supervision.domain.entity.Userinfo
import cn.flightfeather.supervision.domain.enumeration.SceneType
import cn.flightfeather.supervision.lightshare.vo.AuthSceneVo
import cn.flightfeather.supervision.lightshare.vo.BaseResponse
@@ -30,4 +31,13 @@
     * @return 认证状态, [企业认证状态, 场景认证状态, 个人认证状态]
     */
    fun authStatus(wxUserId: String?, userId: String?): BaseResponse<List<Boolean>>
    /**
     * 获取企业认证状态
     * @param userId 场景用户id
     * @return 认证状态, [企业认证状态, 场景认证状态, 个人认证状态]
     */
    fun sceneAuthStatus(userId: String?): BaseResponse<List<Boolean>>
    fun getUnAuthedUsers(): BaseResponse<List<Userinfo?>>
}