@@ -53,6 +53,15 @@ public class AgentController extends BaseController {
return iAgentService.queryPageList(bo, pageQuery);
}
+ /**
+ *查询代理商信息列表
+ */
+ @ApiOperation("查询代理商信息列表")
+ @GetMapping("/list")
+ public R<List<AgentVo>> list(@Validated(QueryGroup.class) AgentBo bo) {
+ return R.ok(iAgentService.queryList(bo));
+ }
+
/**
* 获取代理商信息详细信息
*/
@@ -61,6 +61,16 @@ public class ShopController extends BaseController {
return shopVoTableDataInfo;
+ * 查询门店信息列表
+ @ApiOperation("查询门店信息列表")
+ public R<List<ShopVo>> list(@Validated(QueryGroup.class) ShopBo bo) {
+ return R.ok(iShopService.queryList(bo));
* 获取门店信息详细信息