MemberCenterAuthenManager.java 1.52 KB
package com.diligrp.website.manager;

/**
 * <B>Description</B> TODO <br />
 * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
 * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
 * <B>Company</B> 地利集团
 * @createTime 2014年6月20日 下午12:03:15
 * @author liujie
 */
public interface MemberCenterAuthenManager {
    /**
     * 
     * this method is 查询认证用户列表信息
     * @param bq
     * @return
     * @createTime 2014年6月20日 下午3:59:18
     * @author liujie
     */
    //public PageTemplate  getAuthenInfo(BaseQuery bq)throws Exception;
    /**
     * 
     * this method is 获取认证用户信息
     * @param userId
     * @return
     * @createTime 2014年6月20日 下午3:58:06
     * @author liujie
     */
    //public UserExtension getUserInfoById(Long userId)throws Exception;
    /**
     * 
     * this method is 获取认真企业用户信息
     * @param companyId
     * @return
     * @createTime 2014年6月20日 下午3:58:18
     * @author liujie
     */
    //public EnterpriseInfo getEnterpriseInfoById(Long companyId)throws Exception;
    /**
     * 
     * this method is 审批认真用户信息
     * @param userId
     * @param userType
     * @param authState
     * @param auditReson
     * @return
     * @createTime 2014年6月20日 下午3:58:32
     * @author liujie
     */
    //boolean approveAuthen(Long userId, Integer userType, Integer authState, String auditReson,Long operatorId)throws Exception;
}