Sfoglia il codice sorgente

用户信息管理界面的修改用户资料

XMTT 7 anni fa
parent
commit
5f69fc0997

+ 20 - 1
src/main/java/com/ekexiu/console/system/dao/HonorDao.java

@ -1,11 +1,15 @@
1 1
package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.Honor;
4
import org.jfw.apt.annotation.Nullable;
4 5
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
8
import org.jfw.apt.orm.annotation.dao.method.operator.*;
6 9
7 10
import java.sql.Connection;
8 11
import java.sql.SQLException;
12
import java.util.List;
9 13
10 14
/**
11 15
 * Created by TT on 2017/7/14.
@ -14,4 +18,19 @@ import java.sql.SQLException;
14 18
public interface HonorDao {
15 19
    @Insert
16 20
    int insert(Connection con, Honor honor) throws SQLException;
21
22
    @Update
23
    int update(Connection con, Honor honor) throws SQLException;
24
25
    @SelectList
26
    @OrderBy(" ORDER BY YEAR DESC ")
27
    List<Honor> query(Connection con, String professorId) throws SQLException;
28
29
    @Nullable
30
    @SelectOne
31
    Honor queryOne(Connection con, String id) throws SQLException;
32
33
    @DeleteWith
34
    @From(Honor.class)
35
    int delete(Connection con, String id) throws SQLException;
17 36
}

+ 20 - 1
src/main/java/com/ekexiu/console/system/dao/PartTimeJobDao.java

@ -1,11 +1,15 @@
1 1
package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.PartTimeJob;
4
import org.jfw.apt.annotation.Nullable;
4 5
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
8
import org.jfw.apt.orm.annotation.dao.method.operator.*;
6 9
7 10
import java.sql.Connection;
8 11
import java.sql.SQLException;
12
import java.util.List;
9 13
10 14
/**
11 15
 * Created by TT on 2017/7/14.
@ -14,4 +18,19 @@ import java.sql.SQLException;
14 18
public interface PartTimeJobDao {
15 19
    @Insert
16 20
    int insert(Connection con, PartTimeJob job) throws SQLException;
21
22
    @Update
23
    int update(Connection con, PartTimeJob job) throws SQLException;
24
25
    @SelectList
26
    @OrderBy(" ORDER BY STOP_MONTH DESC ")
27
    List<PartTimeJob> query(Connection con, String professorId) throws SQLException;
28
29
    @Nullable
30
    @SelectOne
31
    PartTimeJob queryOne(Connection con, String id) throws SQLException;
32
33
    @DeleteWith
34
    @From(PartTimeJob.class)
35
    int delete(Connection con, String id) throws SQLException;
17 36
}

+ 5 - 1
src/main/java/com/ekexiu/console/system/dao/ProfessorDao.java

@ -83,9 +83,13 @@ public interface ProfessorDao {
83 83
84 84
    @PageQuery
85 85
    @OrderBy("ORDER BY create_time DESC NULLS LAST")
86
    PageQueryResult<UserDetail> pageQueryUserDetail(Connection con, @Nullable @Like String name,@Nullable @Alias("createTime") @GtEq String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
86
    PageQueryResult<UserDetail> pageQueryUserDetail(Connection con, @Nullable @Like String name,@Nullable String activeStatus,@Nullable Integer sendMailStatus,@Nullable @Alias("createTime") @GtEq String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
87 87
88 88
    @UpdateWith
89 89
    @From(Professor.class)
90 90
    int updateBusinessData(Connection con,String id,@Set int authentication,@Set int authStatus,@Set int authStatusExpert ,@Set int sortFirst)throws SQLException;
91
92
    @Nullable
93
    @QueryOne
94
    UserDetail queryDetail(Connection con, String id)throws SQLException;
91 95
}

+ 20 - 1
src/main/java/com/ekexiu/console/system/dao/ProfessorEduBgDao.java

@ -1,11 +1,15 @@
1 1
package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.ProfessorEduBg;
4
import org.jfw.apt.annotation.Nullable;
4 5
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
8
import org.jfw.apt.orm.annotation.dao.method.operator.*;
6 9
7 10
import java.sql.Connection;
8 11
import java.sql.SQLException;
12
import java.util.List;
9 13
10 14
/**
11 15
 * Created by TT on 2017/7/14.
@ -14,4 +18,19 @@ import java.sql.SQLException;
14 18
public interface ProfessorEduBgDao {
15 19
    @Insert
16 20
    int insert(Connection con, ProfessorEduBg edu) throws SQLException;
21
22
    @Update
23
    int update(Connection con, ProfessorEduBg edu) throws SQLException;
24
25
    @SelectList
26
    @OrderBy(" ORDER BY YEAR DESC ")
27
    List<ProfessorEduBg> query(Connection con, String professorId) throws SQLException;
28
29
    @Nullable
30
    @SelectOne
31
    ProfessorEduBg queryOne(Connection con, String id) throws SQLException;
32
33
    @DeleteWith
34
    @From(ProfessorEduBg.class)
35
    int delete(Connection con, String id) throws SQLException;
17 36
}

+ 21 - 2
src/main/java/com/ekexiu/console/system/dao/ProjectDao.java

@ -1,11 +1,15 @@
1 1
package com.ekexiu.console.system.dao;
2 2
3 3
import com.ekexiu.console.system.po.Project;
4
import org.jfw.apt.annotation.Nullable;
4 5
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
8
import org.jfw.apt.orm.annotation.dao.method.operator.*;
6 9
7 10
import java.sql.Connection;
8 11
import java.sql.SQLException;
12
import java.util.List;
9 13
10 14
/**
11 15
 * Created by TT on 2017/7/13.
@ -13,5 +17,20 @@ import java.sql.SQLException;
13 17
@DAO
14 18
public interface ProjectDao {
15 19
    @Insert
16
    int insert(Connection con, Project project)throws SQLException;
20
    int insert(Connection con, Project project) throws SQLException;
21
22
    @Update
23
    int update(Connection con, Project project) throws SQLException;
24
25
    @SelectList
26
    @OrderBy(" ORDER BY STOP_MONTH DESC ")
27
    List<Project> query(Connection con, String professorId) throws SQLException;
28
29
    @Nullable
30
    @SelectOne
31
    Project queryOne(Connection con, String id) throws SQLException;
32
33
    @DeleteWith
34
    @From(Project.class)
35
    int delete(Connection con, String id) throws SQLException;
17 36
}

+ 68 - 0
src/main/java/com/ekexiu/console/system/service/HonorService.java

@ -0,0 +1,68 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.HonorDao;
4
import com.ekexiu.console.system.po.Honor;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.web.annotation.Path;
7
import org.jfw.apt.web.annotation.operate.Delete;
8
import org.jfw.apt.web.annotation.operate.Get;
9
import org.jfw.apt.web.annotation.operate.Post;
10
import org.jfw.apt.web.annotation.operate.Put;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.PathVar;
13
import org.jfw.apt.web.annotation.param.RequestBody;
14
import org.jfw.util.StringUtil;
15
16
import java.sql.Connection;
17
import java.sql.SQLException;
18
import java.util.List;
19
20
/**
21
 * Created by TT on 2017/8/14.
22
 */
23
@Path("/honor")
24
public class HonorService {
25
    @Autowrie
26
    private HonorDao honorDao;
27
28
    public HonorDao getHonorDao() {
29
        return honorDao;
30
    }
31
32
    public void setHonorDao(HonorDao honorDao) {
33
        this.honorDao = honorDao;
34
    }
35
36
    @Get
37
    @Path("/{id}")
38
    public Honor query(@JdbcConn Connection con, @PathVar String id) throws SQLException
39
    {
40
        return this.honorDao.queryOne(con, id);
41
    }
42
    @Post
43
    @Path
44
    public void insert(@JdbcConn(true) Connection con, Honor honor) throws SQLException {
45
        String id = StringUtil.buildUUID();
46
        honor.setId(id);
47
        this.honorDao.insert(con, honor);
48
    }
49
50
    @Put
51
    @Path
52
    public void update(@JdbcConn(true) Connection con, @RequestBody Honor honor) throws SQLException {
53
        this.honorDao.update(con, honor);
54
    }
55
56
    @Get
57
    @Path("/professor")
58
    public List<Honor> queryByProfessor(@JdbcConn Connection con, String professorId) throws SQLException {
59
        return this.honorDao.query(con, professorId);
60
    }
61
62
    @Delete
63
    @Path("/{id}")
64
    public void delete(@JdbcConn(true) Connection con, @PathVar String id) throws SQLException {
65
        this.honorDao.delete(con, id);
66
    }
67
68
}

+ 67 - 0
src/main/java/com/ekexiu/console/system/service/PartTimeJobService.java

@ -0,0 +1,67 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.PartTimeJobDao;
4
import com.ekexiu.console.system.po.PartTimeJob;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.web.annotation.Path;
7
import org.jfw.apt.web.annotation.operate.Delete;
8
import org.jfw.apt.web.annotation.operate.Get;
9
import org.jfw.apt.web.annotation.operate.Post;
10
import org.jfw.apt.web.annotation.operate.Put;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.PathVar;
13
import org.jfw.apt.web.annotation.param.RequestBody;
14
import org.jfw.util.StringUtil;
15
16
import java.sql.Connection;
17
import java.sql.SQLException;
18
import java.util.List;
19
20
/**
21
 * Created by TT on 2017/8/14.
22
 */
23
@Path("/job")
24
public class PartTimeJobService {
25
    @Autowrie
26
    private PartTimeJobDao partTimeJobDao;
27
28
    public PartTimeJobDao getPartTimeJobDao() {
29
        return partTimeJobDao;
30
    }
31
32
    public void setPartTimeJobDao(PartTimeJobDao jobDao) {
33
        this.partTimeJobDao = jobDao;
34
    }
35
36
    @Get
37
    @Path("/{id}")
38
    public PartTimeJob query(@JdbcConn Connection con, @PathVar String id) throws SQLException
39
    {
40
        return this.partTimeJobDao.queryOne(con, id);
41
    }
42
    @Post
43
    @Path
44
    public void insert(@JdbcConn(true) Connection con, PartTimeJob honor) throws SQLException {
45
        String id = StringUtil.buildUUID();
46
        honor.setId(id);
47
        this.partTimeJobDao.insert(con, honor);
48
    }
49
50
    @Put
51
    @Path
52
    public void update(@JdbcConn(true) Connection con, @RequestBody PartTimeJob honor) throws SQLException {
53
        this.partTimeJobDao.update(con, honor);
54
    }
55
56
    @Get
57
    @Path("/professor")
58
    public List<PartTimeJob> queryByProfessor(@JdbcConn Connection con, String professorId) throws SQLException {
59
        return this.partTimeJobDao.query(con, professorId);
60
    }
61
62
    @Delete
63
    @Path("/{id}")
64
    public void delete(@JdbcConn(true) Connection con, @PathVar String id) throws SQLException {
65
        this.partTimeJobDao.delete(con, id);
66
    }
67
}

+ 67 - 0
src/main/java/com/ekexiu/console/system/service/ProfessorEduBgService.java

@ -0,0 +1,67 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.ProfessorEduBgDao;
4
import com.ekexiu.console.system.po.ProfessorEduBg;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.web.annotation.Path;
7
import org.jfw.apt.web.annotation.operate.Delete;
8
import org.jfw.apt.web.annotation.operate.Get;
9
import org.jfw.apt.web.annotation.operate.Post;
10
import org.jfw.apt.web.annotation.operate.Put;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.PathVar;
13
import org.jfw.apt.web.annotation.param.RequestBody;
14
import org.jfw.util.StringUtil;
15
16
import java.sql.Connection;
17
import java.sql.SQLException;
18
import java.util.List;
19
20
/**
21
 * Created by TT on 2017/8/14.
22
 */
23
@Path("/edu")
24
public class ProfessorEduBgService {
25
    @Autowrie
26
    private ProfessorEduBgDao professorEduBgDao;
27
28
    public ProfessorEduBgDao getProfessorEduBgDao() {
29
        return professorEduBgDao;
30
    }
31
32
    public void setProfessorEduBgDao(ProfessorEduBgDao professorEduBgDao) {
33
        this.professorEduBgDao = professorEduBgDao;
34
    }
35
36
    @Get
37
    @Path("/{id}")
38
    public ProfessorEduBg query(@JdbcConn Connection con, @PathVar String id) throws SQLException
39
    {
40
        return this.professorEduBgDao.queryOne(con, id);
41
    }
42
    @Post
43
    @Path
44
    public void insert(@JdbcConn(true) Connection con, ProfessorEduBg honor) throws SQLException {
45
        String id = StringUtil.buildUUID();
46
        honor.setId(id);
47
        this.professorEduBgDao.insert(con, honor);
48
    }
49
50
    @Put
51
    @Path
52
    public void update(@JdbcConn(true) Connection con, @RequestBody ProfessorEduBg honor) throws SQLException {
53
        this.professorEduBgDao.update(con, honor);
54
    }
55
56
    @Get
57
    @Path("/professor")
58
    public List<ProfessorEduBg> queryByProfessor(@JdbcConn Connection con, String professorId) throws SQLException {
59
        return this.professorEduBgDao.query(con, professorId);
60
    }
61
62
    @Delete
63
    @Path("/{id}")
64
    public void delete(@JdbcConn(true) Connection con, @PathVar String id) throws SQLException {
65
        this.professorEduBgDao.delete(con, id);
66
    }
67
}

+ 8 - 2
src/main/java/com/ekexiu/console/system/service/ProfessorService.java

@ -169,8 +169,8 @@ public class ProfessorService {
169 169
170 170
    @Get
171 171
    @Path("/pqUserDetail")
172
    public PageQueryResult<UserDetail> userDetailPageQueryResult(@JdbcConn Connection con, @Nullable String name, @Nullable String bt, @Nullable String et, @DefaultValue("10") int pageSize, @DefaultValue("1") int pageNo)throws SQLException {
173
        return this.professorDao.pageQueryUserDetail(con, name == null ? null : "%" + name + "%", bt, et, pageSize, pageNo);
172
    public PageQueryResult<UserDetail> userDetailPageQueryResult(@JdbcConn Connection con, @Nullable String name, @Nullable String activeStatus,@Nullable Integer sendMailStatus,@Nullable String bt, @Nullable String et, @DefaultValue("10") int pageSize, @DefaultValue("1") int pageNo)throws SQLException {
173
        return this.professorDao.pageQueryUserDetail(con, name == null ? null : "%" + name + "%", activeStatus,sendMailStatus, bt, et, pageSize, pageNo);
174 174
    }
175 175
176 176
    @Post
@ -270,4 +270,10 @@ public class ProfessorService {
270 270
        }
271 271
        return luser;
272 272
    }
273
274
    @Get
275
    @Path("/detail/{id}")
276
    public UserDetail queryDetail(@JdbcConn Connection con, @PathVar String id) throws SQLException {
277
        return this.professorDao.queryDetail(con, id);
278
    }
273 279
}

+ 69 - 0
src/main/java/com/ekexiu/console/system/service/ProjectService.java

@ -0,0 +1,69 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.ProjectDao;
4
import com.ekexiu.console.system.po.Project;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.web.annotation.Path;
7
import org.jfw.apt.web.annotation.operate.Delete;
8
import org.jfw.apt.web.annotation.operate.Get;
9
import org.jfw.apt.web.annotation.operate.Post;
10
import org.jfw.apt.web.annotation.operate.Put;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.PathVar;
13
import org.jfw.apt.web.annotation.param.RequestBody;
14
import org.jfw.util.StringUtil;
15
16
import java.sql.Connection;
17
import java.sql.SQLException;
18
import java.util.List;
19
20
/**
21
 * Created by TT on 2017/8/14.
22
 */
23
@Path("/project")
24
public class ProjectService {
25
26
    @Autowrie
27
    private ProjectDao projectDao;
28
29
    public ProjectDao getProjectDao() {
30
        return projectDao;
31
    }
32
33
    public void setProjectDao(ProjectDao projectDao) {
34
        this.projectDao = projectDao;
35
    }
36
37
    @Get
38
    @Path("/{id}")
39
    public Project query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
40
        return this.projectDao.queryOne(con, id);
41
    }
42
43
    @Post
44
    @Path
45
    public void insert(@JdbcConn(true) Connection con, Project project) throws SQLException {
46
        String id = StringUtil.buildUUID();
47
        project.setId(id);
48
        this.projectDao.insert(con, project);
49
    }
50
51
    @Put
52
    @Path
53
    public void update(@JdbcConn(true) Connection con, @RequestBody Project project) throws SQLException {
54
        this.projectDao.update(con, project);
55
    }
56
57
    @Get
58
    @Path("/professor")
59
    public List<Project> queryByProfessor(@JdbcConn Connection con, String professorId) throws SQLException {
60
        return this.projectDao.query(con, professorId);
61
    }
62
63
    @Delete
64
    @Path("/{id}")
65
    public void delete(@JdbcConn(true) Connection con, @PathVar String id) throws SQLException {
66
        this.projectDao.delete(con, id);
67
    }
68
}
69