MemberCenterAuthenService.java
1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.diligrp.website.service;
/**
* <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:05:26
* @author liujie
*/
public interface MemberCenterAuthenService {
// /**
// *
// * this method is 查询认证用户列表信息
// * @param bq
// * @return
// * @createTime 2014年6月20日 下午3:59:44
// * @author liujie
// */
// public PageTemplate getAuthenInfo(BaseQuery bq);
// /**
// *
// * this method is 获取认证用户信息
// * @param userId
// * @return
// * @createTime 2014年6月20日 下午3:58:06
// * @author liujie
// */
// public UserExtension getUserInfoById(Long userId);
// /**
// *
// * this method is 获取认真企业用户信息
// * @param companyId
// * @return
// * @createTime 2014年6月20日 下午3:58:18
// * @author liujie
// */
// public EnterpriseInfo getEnterpriseInfoById(Long companyId);
// /**
// *
// * 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);
}