|
@@ -102,6 +102,7 @@ public class ChannelController extends BaseApiController {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("subchannel/list")
|
|
|
+ @ApiOperation("获取我的下级渠道列表信息,支持翻页")
|
|
|
@ApiResponses(
|
|
|
@ApiResponse(code = 200, message = "成功", response = ChannelVO.class)
|
|
|
)
|
|
@@ -137,6 +138,7 @@ public class ChannelController extends BaseApiController {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping(value = "subchannel/detail")
|
|
|
+ @ApiOperation("获取我的下级渠道详情信息")
|
|
|
@ApiResponses(
|
|
|
@ApiResponse(code = 200, message = "成功", response = ChannelVO.class)
|
|
|
)
|
|
@@ -293,6 +295,7 @@ public class ChannelController extends BaseApiController {
|
|
|
* @param
|
|
|
* @return
|
|
|
*/
|
|
|
+ @ApiOperation("获取当前用户渠道或者某个子渠道的经营数据")
|
|
|
@PostMapping(value = "subchannel/operdata/query")
|
|
|
public AjaxResult getOperData(@RequestBody JSONObject jsonObject) {
|
|
|
if (null == jsonObject) {
|
|
@@ -324,6 +327,7 @@ public class ChannelController extends BaseApiController {
|
|
|
* @param
|
|
|
* @return
|
|
|
*/
|
|
|
+ @ApiOperation("获取子渠道的经营数据列表")
|
|
|
@PostMapping(value = "subchannel/operdata/list")
|
|
|
public TableDataInfo getOperDataList(@RequestBody JSONObject jsonObject) {
|
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
@@ -362,7 +366,11 @@ public class ChannelController extends BaseApiController {
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
+ @ApiOperation("获取我的经销商列表信息,支持翻页")
|
|
|
@PostMapping("site/list")
|
|
|
+ @ApiResponses(
|
|
|
+ @ApiResponse(code = 200, message = "成功", response = ChannelVO.class)
|
|
|
+ )
|
|
|
public TableDataInfo listSite(@RequestBody SiteQueryParam siteParam) {
|
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
|
List<ChannelVO> list = new ArrayList<ChannelVO>();
|
|
@@ -722,6 +730,7 @@ public class ChannelController extends BaseApiController {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping(value = "subchannel/index")
|
|
|
+ @ApiOperation("渠道端查看子渠道列表")
|
|
|
public AjaxResult getChannelIndex() {
|
|
|
int waitVerifyNum = 0;
|
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|