|
|
|
|
15
|
import org.jfw.apt.web.annotation.operate.Put;
|
15
|
import org.jfw.apt.web.annotation.operate.Put;
|
16
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
16
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
17
|
import org.jfw.apt.web.annotation.param.PathVar;
|
17
|
import org.jfw.apt.web.annotation.param.PathVar;
|
|
|
18
|
import org.jfw.apt.web.annotation.param.RequestBody;
|
18
|
import org.jfw.util.PageQueryResult;
|
19
|
import org.jfw.util.PageQueryResult;
|
19
|
import org.jfw.util.StringUtil;
|
20
|
import org.jfw.util.StringUtil;
|
20
|
|
21
|
|
|
|
|
|
44
|
|
45
|
|
45
|
@Put
|
46
|
@Put
|
46
|
@Path
|
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
|
this.operationDao.update(con, operation);
|
49
|
this.operationDao.update(con, operation);
|
49
|
}
|
50
|
}
|
50
|
|
51
|
|