XMTT 5 gadi atpakaļ
vecāks
revīzija
7ac8aeed73

+ 4 - 9
src/main/java/com/ekexiu/portal/resResult/ResearchResultService.java

7
import org.jfw.apt.web.annotation.Path;
7
import org.jfw.apt.web.annotation.Path;
8
import org.jfw.apt.web.annotation.operate.Get;
8
import org.jfw.apt.web.annotation.operate.Get;
9
import org.jfw.apt.web.annotation.operate.Post;
9
import org.jfw.apt.web.annotation.operate.Post;
10
import org.jfw.apt.web.annotation.param.FieldParam;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
10
import org.jfw.apt.web.annotation.param.JdbcConn;
12
import org.jfw.apt.web.annotation.param.RequestParam;
13
import org.jfw.apt.web.annotation.param.Upload;
11
import org.jfw.apt.web.annotation.param.Upload;
14
import org.jfw.util.ListUtil;
12
import org.jfw.util.ListUtil;
15
import org.jfw.util.PageQueryResult;
13
import org.jfw.util.PageQueryResult;
158
156
159
    @Post
157
    @Post
160
    @Path("/draft")
158
    @Path("/draft")
161
    public String draft(@JdbcConn(true) Connection con, @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
159
    public String draft(@JdbcConn(true) Connection con, ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
162
        researchResult.setStatus("2");
160
        researchResult.setStatus("2");
163
        return insert(con, researchResult, researchers);
161
        return insert(con, researchResult, researchers);
164
    }
162
    }
165
163
166
    @Post
164
    @Post
167
    @Path("/publish")
165
    @Path("/publish")
168
    public String publish(@JdbcConn(true) Connection con,
169
                          @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
166
    public String publish(@JdbcConn(true) Connection con, ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
170
        researchResult.setStatus("1");
167
        researchResult.setStatus("1");
171
        return insert(con, researchResult, researchers);
168
        return insert(con, researchResult, researchers);
172
    }
169
    }
173
170
174
    @Post
171
    @Post
175
    @Path("/draft/update")
172
    @Path("/draft/update")
176
    public boolean updateDraft(@JdbcConn(true) Connection con,
177
                               @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
173
    public boolean updateDraft(@JdbcConn(true) Connection con, ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
178
        researchResult.setStatus("2");
174
        researchResult.setStatus("2");
179
        return update(con, researchResult,researchers);
175
        return update(con, researchResult,researchers);
180
    }
176
    }
181
177
182
    @Post
178
    @Post
183
    @Path("/publish/update")
179
    @Path("/publish/update")
184
    public boolean updatePublish(@JdbcConn(true) Connection con,
185
                                 @RequestParam(fields={@FieldParam(value = "platform",valueClass = Boolean.class),@FieldParam(value = "console",valueClass = Boolean.class),@FieldParam(value="professor",valueClass = Boolean.class)}) ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
180
    public boolean updatePublish(@JdbcConn(true) Connection con, ResearchResult researchResult, @Nullable String[] researchers) throws SQLException, IOException {
186
        researchResult.setStatus("1");
181
        researchResult.setStatus("1");
187
        return update(con, researchResult, researchers);
182
        return update(con, researchResult, researchers);
188
    }
183
    }