|
@@ -0,0 +1,98 @@
|
|
|
|
|
+package com.zksy.web.controller.basicData;
|
|
|
|
|
+
|
|
|
|
|
+import com.zksy.common.core.controller.BaseController;
|
|
|
|
|
+import com.zksy.basicData.domain.XcrEnterprisePublicationSupplySubscribedDetailsInvestors;
|
|
|
|
|
+import com.zksy.basicData.service.IXcrEnterprisePublicationSupplySubscribedDetailsInvestorsService;
|
|
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
+import com.zksy.common.core.domain.AjaxResult;
|
|
|
|
|
+import com.zksy.common.utils.SearchUtil;
|
|
|
|
|
+import com.zksy.common.annotation.Log;
|
|
|
|
|
+import com.zksy.common.enums.BusinessType;
|
|
|
|
|
+import com.zksy.common.utils.poi.ExcelUtil;
|
|
|
|
|
+import io.swagger.annotations.Api;
|
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
|
+
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
+
|
|
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 企业公示_出资人认缴明细Controller
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author nahida
|
|
|
|
|
+ * @date 2024-11-04
|
|
|
|
|
+ */
|
|
|
|
|
+@RestController
|
|
|
|
|
+@RequestMapping("/basicData/xcrEnterprisePublicationSupplySubscribedDetailsInvestors")
|
|
|
|
|
+@Api(tags = "企业公示_出资人认缴明细", description = "企业公示_出资人认缴明细desc")
|
|
|
|
|
+public class XcrEnterprisePublicationSupplySubscribedDetailsInvestorsController extends BaseController{
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IXcrEnterprisePublicationSupplySubscribedDetailsInvestorsService service;
|
|
|
|
|
+
|
|
|
|
|
+ @GetMapping("/getById/{borrowId}")
|
|
|
|
|
+ @ApiOperation(value = "企业公示_出资人认缴明细搜索getById")
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('basicData:xcrEnterprisePublicationSupplySubscribedDetailsInvestors:list')")
|
|
|
|
|
+ public XcrEnterprisePublicationSupplySubscribedDetailsInvestors getById(@PathVariable String borrowId) {
|
|
|
|
|
+ return service.getById(borrowId);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @GetMapping("/findByPage")
|
|
|
|
|
+ @ApiOperation(value = "企业公示_出资人认缴明细分页")
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('basicData:xcrEnterprisePublicationSupplySubscribedDetailsInvestors:list')")
|
|
|
|
|
+ public Page findByPage(long pageNum, long pageSize, String conditionJson) throws Exception {
|
|
|
|
|
+ return service.page(new Page<>(pageNum, pageSize), SearchUtil.parseWhereSql(conditionJson));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @GetMapping("/getList")
|
|
|
|
|
+ @ApiOperation(value = "企业公示_出资人认缴明细查询所有")
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('basicData:xcrEnterprisePublicationSupplySubscribedDetailsInvestors:list')")
|
|
|
|
|
+ public List<XcrEnterprisePublicationSupplySubscribedDetailsInvestors> getList(String conditionJson) throws Exception {
|
|
|
|
|
+ return service.list(SearchUtil.parseWhereSql(conditionJson));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 新增企业公示_出资人认缴明细
|
|
|
|
|
+ */
|
|
|
|
|
+ @PostMapping("/save")
|
|
|
|
|
+ @ApiOperation(value = "企业公示_出资人认缴明细新增")
|
|
|
|
|
+ @Log(title = "新增企业公示_出资人认缴明细", businessType = BusinessType.INSERT)
|
|
|
|
|
+ public boolean save(@RequestBody XcrEnterprisePublicationSupplySubscribedDetailsInvestors xcrEnterprisePublicationSupplySubscribedDetailsInvestors) {
|
|
|
|
|
+ return service.save(xcrEnterprisePublicationSupplySubscribedDetailsInvestors);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 修改企业公示_出资人认缴明细
|
|
|
|
|
+ */
|
|
|
|
|
+ @PostMapping("/updateById")
|
|
|
|
|
+ @ApiOperation(value = "企业公示_出资人认缴明细修改")
|
|
|
|
|
+ @Log(title = "修改企业公示_出资人认缴明细", businessType = BusinessType.UPDATE)
|
|
|
|
|
+ public boolean updateById(@RequestBody XcrEnterprisePublicationSupplySubscribedDetailsInvestors xcrEnterprisePublicationSupplySubscribedDetailsInvestors) {
|
|
|
|
|
+ return service.updateById(xcrEnterprisePublicationSupplySubscribedDetailsInvestors);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @Log(title = "企业公示_出资人认缴明细", businessType = BusinessType.DELETE)
|
|
|
|
|
+ @PostMapping("/delete")
|
|
|
|
|
+ @ApiOperation(value = "删除企业公示_出资人认缴明细", notes = "删除企业公示_出资人认缴明细")
|
|
|
|
|
+ public AjaxResult delete(@RequestBody List<String> ids)
|
|
|
|
|
+ {
|
|
|
|
|
+ return toAjax(service.removeByIds(ids));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 导出企业公示_出资人认缴明细列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('basicData:xcrEnterprisePublicationSupplySubscribedDetailsInvestors:export')")
|
|
|
|
|
+ @Log(title = "企业公示_出资人认缴明细", businessType = BusinessType.EXPORT)
|
|
|
|
|
+ @PostMapping("/export")
|
|
|
|
|
+ public void export(HttpServletResponse response,String conditionJson) throws Exception
|
|
|
|
|
+ {
|
|
|
|
|
+ List<XcrEnterprisePublicationSupplySubscribedDetailsInvestors> list = service.list(SearchUtil.parseWhereSql(conditionJson));
|
|
|
|
|
+ ExcelUtil<XcrEnterprisePublicationSupplySubscribedDetailsInvestors> util = new ExcelUtil<XcrEnterprisePublicationSupplySubscribedDetailsInvestors>(XcrEnterprisePublicationSupplySubscribedDetailsInvestors.class);
|
|
|
|
|
+ util.exportExcel(response, list, "企业公示_出资人认缴明细数据");
|
|
|
|
|
+ }
|
|
|
|
|
+}
|