|
@ -15,6 +15,7 @@ import org.jfw.apt.web.annotation.operate.Post;
|
15
|
15
|
import org.jfw.apt.web.annotation.operate.Put;
|
16
|
16
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
17
|
17
|
import org.jfw.apt.web.annotation.param.PathVar;
|
|
18
|
import org.jfw.apt.web.annotation.param.RequestBody;
|
18
|
19
|
import org.jfw.util.PageQueryResult;
|
19
|
20
|
import org.jfw.util.StringUtil;
|
20
|
21
|
|
|
@ -44,7 +45,7 @@ public class OperationService {
|
44
|
45
|
|
45
|
46
|
@Put
|
46
|
47
|
@Path
|
47
|
|
public void update(@JdbcConn(true) Connection con, Operation operation) throws SQLException{
|
|
48
|
public void update(@JdbcConn(true) Connection con, @RequestBody Operation operation) throws SQLException{
|
48
|
49
|
this.operationDao.update(con, operation);
|
49
|
50
|
}
|
50
|
51
|
|