瀏覽代碼

更新操作注解加上响应体

zzy.zhiyuan.foxmail 8 年之前
父節點
當前提交
680309f1ea
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/main/java/com/ekexiu/portal/service/OperationService.java

+ 2 - 1
src/main/java/com/ekexiu/portal/service/OperationService.java

@ -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