后管新增 运营商分润组页面

This commit is contained in:
Lemon
2024-09-18 11:07:47 +08:00
parent 89af8426ab
commit 33c1cc0b70
8 changed files with 178 additions and 57 deletions

View File

@@ -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;
}
/**
* 导出运营商分润组列表
*/