修复部分带有@RestConvert方法生成RestServlet时出现的BUG

This commit is contained in:
Redkale
2017-12-16 16:32:21 +08:00
parent 6196c05f12
commit 76c54f8d54
2 changed files with 2 additions and 1 deletions

View File

@@ -74,6 +74,7 @@ public class HelloService implements Service {
//查询List列表
@RestMapping(name = "list")
@RestConvert(type = HelloEntity.class, ignoreColumns = {"createtime"})
public List<HelloEntity> queryHello(HelloBean bean) { //通过 /pipes/hello/list?bean={...} 查询List列表
return source.queryList(HelloEntity.class, bean);
}