mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
后管新增 运营商分润组页面
This commit is contained in:
@@ -3,6 +3,8 @@ package com.jsowell.web.controller.pile;
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import com.jsowell.common.response.RestApiResponse;
|
||||
import com.jsowell.pile.vo.web.ShareprofitGroupVO;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
@@ -45,6 +47,15 @@ public class ShareprofitGroupController extends BaseController {
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@PostMapping("/getShareprofitGroupList")
|
||||
public RestApiResponse<?> getShareprofitGroupList(@RequestBody ShareprofitGroup shareprofitGroup) {
|
||||
RestApiResponse<?> response = null;
|
||||
startPage();
|
||||
List<ShareprofitGroupVO> list = shareprofitGroupService.getShareprofitGroupVOList(shareprofitGroup);
|
||||
response = new RestApiResponse<>(list);
|
||||
return response;
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出运营商分润组列表
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user