新增 运营商--分润会员对应关系表、实体、Service

This commit is contained in:
Lemon
2024-09-13 10:43:43 +08:00
parent 554d29e727
commit 150354941c
18 changed files with 984 additions and 0 deletions

View File

@@ -0,0 +1,98 @@
package com.jsowell.web.controller.pile;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.jsowell.common.annotation.Log;
import com.jsowell.common.core.controller.BaseController;
import com.jsowell.common.core.domain.AjaxResult;
import com.jsowell.common.enums.BusinessType;
import com.jsowell.pile.domain.shareprofit.ShareprofitGroup;
import com.jsowell.pile.service.IShareprofitGroupService;
import com.jsowell.common.util.poi.ExcelUtil;
import com.jsowell.common.core.page.TableDataInfo;
/**
* 运营商分润组Controller
*
* @author jsowell
* @date 2024-09-12
*/
@RestController
@RequestMapping("/pile/shareprofitGroup")
public class ShareprofitGroupController extends BaseController {
@Autowired
private IShareprofitGroupService shareprofitGroupService;
/**
* 查询运营商分润组列表
*/
@PreAuthorize("@ss.hasPermi('pile:shareprofitGroup:list')")
@GetMapping("/list")
public TableDataInfo list(ShareprofitGroup shareprofitGroup) {
startPage();
List<ShareprofitGroup> list = shareprofitGroupService.selectShareprofitGroupList(shareprofitGroup);
return getDataTable(list);
}
/**
* 导出运营商分润组列表
*/
@PreAuthorize("@ss.hasPermi('pile:shareprofitGroup:export')")
@Log(title = "运营商分润组", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, ShareprofitGroup shareprofitGroup) {
List<ShareprofitGroup> list = shareprofitGroupService.selectShareprofitGroupList(shareprofitGroup);
ExcelUtil<ShareprofitGroup> util = new ExcelUtil<ShareprofitGroup>(ShareprofitGroup.class);
util.exportExcel(response, list, "运营商分润组数据");
}
/**
* 获取运营商分润组详细信息
*/
@PreAuthorize("@ss.hasPermi('pile:shareprofitGroup:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return AjaxResult.success(shareprofitGroupService.selectShareprofitGroupById(id));
}
/**
* 新增运营商分润组
*/
@PreAuthorize("@ss.hasPermi('pile:shareprofitGroup:add')")
@Log(title = "运营商分润组", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody ShareprofitGroup shareprofitGroup) {
return toAjax(shareprofitGroupService.insertShareprofitGroup(shareprofitGroup));
}
/**
* 修改运营商分润组
*/
@PreAuthorize("@ss.hasPermi('pile:shareprofitGroup:edit')")
@Log(title = "运营商分润组", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody ShareprofitGroup shareprofitGroup) {
return toAjax(shareprofitGroupService.updateShareprofitGroup(shareprofitGroup));
}
/**
* 删除运营商分润组
*/
@PreAuthorize("@ss.hasPermi('pile:shareprofitGroup:remove')")
@Log(title = "运营商分润组", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
return toAjax(shareprofitGroupService.deleteShareprofitGroupByIds(ids));
}
}

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
-->
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_3.xsd">
<id>jsowell-admin</id>
<classpath>
<dir name="D:/ideaProjects/jsowell-charger-web/jsowell-admin/target/classes">
</dir>
</classpath>
</application>