package com.landtool.lanbase.modules.org.service; import com.landtool.lanbase.modules.org.entity.OrgUserAuth; import com.landtool.lanbase.modules.org.entity.OrgUserJoinAuth; import java.util.List; import java.util.Map; /** * @author zimao.guo * @Description: TODO(用户审核表) * @date 2018-01-24 14:25:23 */ public interface OrgUserAuthService { OrgUserAuth queryObject(Long authId); List queryList(Map map); List queryOrgUserJoinAuthList(Map map); int queryTotal(Map map); int queryOrgUserJoinAuthTotal(Map map); void save(OrgUserAuth userAuth); void update(OrgUserAuth userAuth); void delete(Long authId); void deleteBatch(Long[] authIds); void updateAuthState(Long authId, Long authResult); }