XMTT 6 years ago
parent
commit
437135a657

+ 3 - 4
src/main/java/com/ekexiu/project/platform/article/ArticleService.java

@ -7,7 +7,6 @@ import org.jfw.apt.web.annotation.LoginUser;
7 7
import org.jfw.apt.web.annotation.Path;
8 8
import org.jfw.apt.web.annotation.operate.Get;
9 9
import org.jfw.apt.web.annotation.operate.Post;
10
import org.jfw.apt.web.annotation.operate.Put;
11 10
import org.jfw.apt.web.annotation.param.JdbcConn;
12 11
import org.jfw.util.PageQueryResult;
13 12
import org.jfw.util.StringUtil;
@ -65,8 +64,8 @@ public class ArticleService {
65 64
    }
66 65

67 66
    @Path("/draft/save")
68
    @Put
69
    public int draftSave(@JdbcConn(true) Connection con, Article article, @Nullable String[] professors, @Nullable String[] orgs, @Nullable String[] comps, @LoginUser SessionManager sessionManager) throws SQLException, JfwBaseException {
67
    @Post
68
    public int draftSave(@JdbcConn(true) Connection con,  Article article, @Nullable String[] professors, @Nullable String[] orgs, @Nullable String[] comps, @LoginUser SessionManager sessionManager) throws SQLException, JfwBaseException {
70 69
        if (article.getId() != null) {
71 70
            article.setModifier(sessionManager.getId());
72 71
            articleDao.deleteArticlePro(con, article.getId());
@ -80,7 +79,7 @@ public class ArticleService {
80 79
    }
81 80

82 81
    @Path("/draft/publish")
83
    @Put
82
    @Post
84 83
    public int draftPublish(@JdbcConn(true) Connection con, Article article, @Nullable String[] professors, @Nullable String[] orgs, @Nullable String[] comps, @LoginUser SessionManager sessionManager) throws SQLException, JfwBaseException {
85 84
        if (article.getId() != null) {
86 85
            article.setPublished(true);

+ 2 - 1
src/main/java/com/ekexiu/project/platform/info/PlatformService.java

@ -5,6 +5,7 @@ import org.jfw.apt.web.annotation.Path;
5 5
import org.jfw.apt.web.annotation.operate.Get;
6 6
import org.jfw.apt.web.annotation.operate.Put;
7 7
import org.jfw.apt.web.annotation.param.JdbcConn;
8
import org.jfw.apt.web.annotation.param.RequestBody;
8 9
import org.jfw.util.exception.JfwBaseException;
9 10
10 11
import java.sql.Connection;
@ -29,7 +30,7 @@ public class PlatformService {
29 30
30 31
    @Path("/update")
31 32
    @Put
32
    public int update(@JdbcConn(true) Connection con, Platform platform) throws SQLException {
33
    public int update(@JdbcConn(true) Connection con,@RequestBody Platform platform) throws SQLException {
33 34
        return platformDao.update(con, platform);
34 35
    }
35 36

+ 2 - 2
src/main/java/com/ekexiu/project/platform/organization/OrgService.java

@ -4,7 +4,7 @@ import org.jfw.apt.annotation.Autowrie;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.web.annotation.Path;
6 6
import org.jfw.apt.web.annotation.operate.Get;
7
import org.jfw.apt.web.annotation.operate.Put;
7
import org.jfw.apt.web.annotation.operate.Post;
8 8
import org.jfw.apt.web.annotation.param.JdbcConn;
9 9
10 10
import java.sql.Connection;
@ -29,7 +29,7 @@ public class OrgService {
29 29
    }
30 30
31 31
    @Path("/setlevel")
32
    @Put
32
    @Post
33 33
    public void setLevel(@JdbcConn(true) Connection con, String id, @Nullable Integer level) throws SQLException {
34 34
        orgDao.setlevel(con, id, level);
35 35
    }

+ 2 - 2
src/main/java/com/ekexiu/project/platform/professor/ProfessorService.java

@ -4,7 +4,7 @@ import org.jfw.apt.annotation.Autowrie;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.web.annotation.Path;
6 6
import org.jfw.apt.web.annotation.operate.Get;
7
import org.jfw.apt.web.annotation.operate.Put;
7
import org.jfw.apt.web.annotation.operate.Post;
8 8
import org.jfw.apt.web.annotation.param.JdbcConn;
9 9
10 10
import java.sql.Connection;
@ -29,7 +29,7 @@ public class ProfessorService {
29 29
    }
30 30
31 31
    @Path("/setlevel")
32
    @Put
32
    @Post
33 33
    public void setLevel(@JdbcConn(true) Connection con, String id, @Nullable Integer level) throws SQLException {
34 34
        professorDao.setlevel(con, id, level);
35 35
    }

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

@ -17,7 +17,6 @@ import org.jfw.apt.web.annotation.method.SetSession;
17 17
import org.jfw.apt.web.annotation.operate.Get;
18 18
import org.jfw.apt.web.annotation.operate.Post;
19 19
import org.jfw.apt.web.annotation.operate.Put;
20
import org.jfw.apt.web.annotation.param.FieldParam;
21 20
import org.jfw.apt.web.annotation.param.JdbcConn;
22 21
import org.jfw.apt.web.annotation.param.PathVar;
23 22
import org.jfw.apt.web.annotation.param.RequestBody;
@ -98,12 +97,7 @@ public class SysService {
98 97
    @Put
99 98
    @Path("/manager")
100 99
    public int modifyManager(@JdbcConn(true) Connection con, @LoginUser SessionManager loginUser,
101
                             @RequestParam(fields = {@FieldParam(value = "account", valueClass = String.class),
102
                                     @FieldParam(value = "name", valueClass = String.class),
103
                                     @FieldParam(value = "phone", valueClass = String.class),
104
                                     @FieldParam(value = "email", valueClass = String.class),
105
                                     @FieldParam(value = "job", valueClass = String.class),
106
                                     @FieldParam(value = "comp", valueClass = String.class)}, excludeFields = {"id", "createTime", "modifyTime", "passwd", "actived"}) Manager user) throws SQLException {
100
                             @RequestBody Manager user) throws SQLException {
107 101
        user.setModifier(loginUser.getId());
108 102
        user.setId(loginUser.getId());
109 103
        return userDao.update(con, user);