XMTT 6 years ago
parent
commit
ca5b67164d

+ 17 - 17
src/main/java/com/ekexiu/project/platform/system/dao/UserDao.java

@ -46,7 +46,7 @@ public interface UserDao {
46 46
47 47
    @Nullable
48 48
    @SelectOne
49
    User queryByLoginPhone(Connection con, String loginPhone, Boolean active) throws SQLException;
49
    User queryByLoginPhone(Connection con, String loginPhone, Boolean actived) throws SQLException;
50 50
51 51
    @Nullable
52 52
    @SelectOne
@ -63,7 +63,7 @@ public interface UserDao {
63 63
    int updateLoginLog(Connection con, String id, @Set String lastLoginTime) throws SQLException;
64 64
65 65
    @Update
66
    @Exclude({"passwd", "active", "loginPhone"})
66
    @Exclude({"passwd", "actived", "loginPhone"})
67 67
    int update(Connection con, User user) throws SQLException;
68 68
69 69
    @UpdateWith
@ -76,14 +76,14 @@ public interface UserDao {
76 76
77 77
    @UpdateWith
78 78
    @From(User.class)
79
    @Where("ACTIVE = '1'")
80
    @SetSentence("ACTIVE = '0'")
79
    @Where("ACTIVED = '1'")
80
    @SetSentence("ACTIVED = '0'")
81 81
    int invalid(Connection con, String id) throws SQLException;
82 82
83 83
    @UpdateWith
84 84
    @From(User.class)
85
    @Where("ACTIVE = '0'")
86
    @SetSentence("ACTIVE = '1'")
85
    @Where("ACTIVED = '0'")
86
    @SetSentence("ACTIVED = '1'")
87 87
    int valid(Connection con, String id) throws SQLException;
88 88
89 89
    @Insert
@ -94,13 +94,13 @@ public interface UserDao {
94 94
    int validUser(Connection con, String id) throws SQLException;
95 95
96 96
    @PageSelect
97
    @Where("ACTIVE ='1'")
97
    @Where("ACTIVED ='1'")
98 98
    @OrderBy("ORDER BY CREATE_TIME DESC")
99 99
    PageQueryResult<User> pageQuery(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"ACCOUNT LIKE ?", "LOGIN_PHONE LIKE ?"}, isAnd = false) @Nullable String key, int pageSize, int pageNo) throws SQLException;
100 100
101 101
    @PageSelect
102 102
    @OrderBy("ORDER BY INVALID_TIME DESC")
103
    PageQueryResult<InvalidUser> pageQueryInvalidUser(Connection con,@GroupSqlColumn(handlerClass = StringHandler.class, value = {"ACCOUNT LIKE ?", "LOGIN_PHONE LIKE ?"}, isAnd = false) @Nullable String key, int pageSize, int pageNo) throws SQLException;
103
    PageQueryResult<InvalidUser> pageQueryInvalidUser(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"ACCOUNT LIKE ?", "LOGIN_PHONE LIKE ?"}, isAnd = false) @Nullable String key, int pageSize, int pageNo) throws SQLException;
104 104
105 105
    @Nullable
106 106
    @SelectOne
@ -122,21 +122,21 @@ public interface UserDao {
122 122
123 123
124 124
    @Update
125
    @Where("ACTIVE ='1'")
125
    @Where("ACTIVED ='1'")
126 126
    @IncludeFixSet
127
    @Exclude(value = {"invalidTime", "invalidOperator", "passwd", "active"})
127
    @Exclude(value = {"invalidTime", "invalidOperator", "passwd", "actived"})
128 128
    int update(Connection con, Manager user) throws SQLException;
129 129
130 130
    @UpdateWith
131 131
    @From(Manager.class)
132
    @Where("ACTIVE ='1'")
133
    @SetSentence("ACTIVE='0',INVALID_TIME=TO_CHAR(NOW(),'YYYYMMDDHH24MISS')")
132
    @Where("ACTIVED ='1'")
133
    @SetSentence("ACTIVED ='0',INVALID_TIME=TO_CHAR(NOW(),'YYYYMMDDHH24MISS')")
134 134
    int disable(Connection con, String id, @Set String invalidOperator) throws SQLException;
135 135
136 136
    @UpdateWith
137 137
    @From(Manager.class)
138
    @Where("ACTIVE ='0'")
139
    @SetSentence("ACTIVE='1'")
138
    @Where("ACTIVED ='0'")
139
    @SetSentence("ACTIVED ='1'")
140 140
    int enable(Connection con, String id) throws SQLException;
141 141
142 142
    @Nullable
@ -152,11 +152,11 @@ public interface UserDao {
152 152
153 153
    @Nullable
154 154
    @SelectOne
155
    Manager queryManagerByLoginPhone(Connection con, String account,@Nullable Boolean actived) throws SQLException;
155
    Manager queryManagerByLoginPhone(Connection con, String account) throws SQLException;
156 156
157 157
    @UpdateWith
158 158
    @From(Manager.class)
159
    int changeManagerPasswd(Connection con, String id,@Set String passwd) throws SQLException;
159
    int changeManagerPasswd(Connection con, String id, @Set String passwd) throws SQLException;
160 160
161 161
    @UpdateWith
162 162
    @From(Manager.class)
@ -165,7 +165,7 @@ public interface UserDao {
165 165
    @PageQuery
166 166
    @From(Manager.class)
167 167
    @OrderBy("ORDER BY CREATE_TIME DESC")
168
    PageQueryResult<ManagerInfo> managerPageQuery(Connection con,@UnEquals String id, boolean actived, int pageSize, int pageNo) throws SQLException;
168
    PageQueryResult<ManagerInfo> managerPageQuery(Connection con, @UnEquals String id, boolean actived, int pageSize, int pageNo) throws SQLException;
169 169
170 170
    @Nullable
171 171
    @QueryOne

+ 3 - 0
src/main/java/com/ekexiu/project/platform/system/po/Manager.java

@ -3,11 +3,14 @@ package com.ekexiu.project.platform.system.po;
3 3
import org.jfw.apt.orm.annotation.entry.Column;
4 4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5 5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.annotation.entry.Unique;
7
import org.jfw.apt.orm.annotation.entry.Uniques;
6 8
import org.jfw.apt.orm.core.enums.DE;
7 9

8 10
import com.ekexiu.project.platform.base.po.ManagedBaseTable;
9 11

10 12
@PrimaryKey("id")
13
@Uniques(@Unique(clolumns = "account",name = "account_unique"))
11 14
@Table(descp = "后台管理用户表")
12 15
public class Manager implements ManagedBaseTable {
13 16
    private String id;

+ 5 - 5
src/main/java/com/ekexiu/project/platform/system/po/User.java

@ -28,18 +28,18 @@ public class User implements BaseTable {
28 28
    private String linkPhone;
29 29
    private String email;
30 30
    private String passwd;
31
    private boolean active;
31
    private boolean actived;
32 32
    private String addr;
33 33
    private String head;
34 34

35 35

36 36
    @Column(descp = "是否可用", value = DE.boolean_de)
37
    public boolean isActive() {
38
        return active;
37
    public boolean isActived() {
38
        return actived;
39 39
    }
40 40

41
    public void setActive(boolean active) {
42
        this.active = active;
41
    public void setActived(boolean actived) {
42
        this.actived = actived;
43 43
    }
44 44

45 45
    @Column(descp = "密码(MD5)", queryable = false, handlerClass = StringHandler.class, dbType = "TEXT")

+ 6 - 6
src/main/java/com/ekexiu/project/platform/system/service/SysService.java

@ -71,8 +71,8 @@ public class SysService {
71 71
    @LoginUser
72 72
    @Get
73 73
    @Path("/exists")
74
    public boolean existsManager(@JdbcConn Connection con, String account, @Nullable Boolean active) throws SQLException {
75
        return null != userDao.queryManagerByLoginPhone(con, account, active);
74
    public boolean existsManager(@JdbcConn Connection con, String account) throws SQLException {
75
        return null != userDao.queryManagerByLoginPhone(con, account);
76 76
    }
77 77
78 78
    @Get
@ -124,8 +124,8 @@ public class SysService {
124 124
125 125
    @Get
126 126
    @Path("/pq")
127
    public PageQueryResult<SessionManager> managerPageQuery(@JdbcConn Connection con,@LoginUser SessionManager user, boolean active, int pageSize, int pageNo) throws SQLException {
128
        PageQueryResult<ManagerInfo> pageQueryResult = userDao.managerPageQuery(con,user.getId(), active, pageSize, pageNo);
127
    public PageQueryResult<SessionManager> managerPageQuery(@JdbcConn Connection con,@LoginUser SessionManager user, boolean actived, int pageSize, int pageNo) throws SQLException {
128
        PageQueryResult<ManagerInfo> pageQueryResult = userDao.managerPageQuery(con,user.getId(), actived, pageSize, pageNo);
129 129
        List<ManagerInfo> managers = pageQueryResult.getData();
130 130
        List<SessionManager> sessionManagers = new ArrayList<>();
131 131
        if (!managers.isEmpty()) {
@ -154,7 +154,7 @@ public class SysService {
154 154
155 155
    @Path("/new")
156 156
    @Post
157
    public String addUser(@JdbcConn(true) Connection con, @LoginUser SessionManager au, @RequestParam(excludeFields = {"id", "acitve", "createor"}) Manager user, String[] rightCode) throws SQLException {
157
    public String addUser(@JdbcConn(true) Connection con, @LoginUser SessionManager au, @RequestParam(excludeFields = {"id", "acitved", "createor"}) Manager user, String[] rightCode) throws SQLException {
158 158
        String id = StringUtil.buildUUID();
159 159
        user.setActived(true);
160 160
        user.setCreator(au.getId());
@ -330,7 +330,7 @@ public class SysService {
330 330
        sessionUser.setId(user.getId());
331 331
        sessionUser.setJob(user.getJob());
332 332
        sessionUser.setName(user.getName());
333
        sessionUser.setActive(user.isActive());
333
        sessionUser.setActived(user.isActived());
334 334
        sessionUser.setAddr(user.getAccount());
335 335
        sessionUser.setCreateTime(user.getCreateTime());
336 336
        sessionUser.setHead(user.getHead());

+ 5 - 5
src/main/java/com/ekexiu/project/platform/system/vo/SessionUser.java

@ -20,7 +20,7 @@ public class SessionUser implements AuthUser {
20 20
	private String linkPhone;
21 21
	private String addr;
22 22
	private String head;
23
    private boolean active;
23
    private boolean actived;
24 24
	public String getId() {
25 25
		return id;
26 26
	}
@ -99,11 +99,11 @@ public class SessionUser implements AuthUser {
99 99
	public void setHead(String head) {
100 100
		this.head = head;
101 101
	}
102
	public boolean isActive() {
103
		return active;
102
	public boolean isActived() {
103
		return actived;
104 104
	}
105
	public void setActive(boolean active) {
106
		this.active = active;
105
	public void setActived(boolean actived) {
106
		this.actived = actived;
107 107
	}
108 108
	@Override
109 109
	public boolean hasAuthority(int auth) {

+ 2 - 0
src/main/resources/database.sql

@ -351,3 +351,5 @@ COMMENT ON COLUMN ARTICLE_ORG.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)
351 351
352 352
INSERT INTO "public"."manager" ("id", "account", "passwd", "name", "phone", "email", "job", "dep", "comp", "actived", "invalid_time", "invalid_operator","create_time","creator","modify_time","modifier") VALUES ('4733F3525B4E40719242AB154932CAA5', '18888888888', 'E10ADC3949BA59ABBE56E057F20F883E', 'admin', '18888888888', 'admin@ekexiu.com', '11', '11', '11', '1','','', '20180718091626', '4733F3525B4E40719242AB154932CAA5','20180718091626', '4733F3525B4E40719242AB154932CAA5');
353 353
354
ALTER TABLE MANAGER ADD UNIQUE (ACCOUNT);
355