parent
6821594506
commit
9fe01f6a7e
@ -1,97 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.controller;
|
||||
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFieldInfo;
|
||||
import com.ruoyi.jjh.declaration.service.IBmsFieldInfoService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 模板字段填写详情Controller
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/system/fieldInfo")
|
||||
public class BmsFieldInfoController extends BaseController {
|
||||
@Autowired
|
||||
private IBmsFieldInfoService bmsFieldInfoService;
|
||||
|
||||
/**
|
||||
* 查询模板字段填写详情列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fieldInfo:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(BmsFieldInfo bmsFieldInfo) {
|
||||
startPage();
|
||||
List<BmsFieldInfo> list = bmsFieldInfoService.selectBmsFieldInfoList(bmsFieldInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出模板字段填写详情列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fieldInfo:export")
|
||||
@Log(title = "模板字段填写详情", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, BmsFieldInfo bmsFieldInfo) {
|
||||
List<BmsFieldInfo> list = bmsFieldInfoService.selectBmsFieldInfoList(bmsFieldInfo);
|
||||
ExcelUtil<BmsFieldInfo> util = new ExcelUtil<BmsFieldInfo>(BmsFieldInfo.class);
|
||||
util.exportExcel(response, list, "模板字段填写详情数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取模板字段填写详情详细信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fieldInfo:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return success(bmsFieldInfoService.selectBmsFieldInfoById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增模板字段填写详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fieldInfo:add")
|
||||
@Log(title = "模板字段填写详情", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody BmsFieldInfo bmsFieldInfo) {
|
||||
return toAjax(bmsFieldInfoService.insertBmsFieldInfo(bmsFieldInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改模板字段填写详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fieldInfo:edit")
|
||||
@Log(title = "模板字段填写详情", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
public AjaxResult edit(@RequestBody BmsFieldInfo bmsFieldInfo) {
|
||||
return toAjax(bmsFieldInfoService.updateBmsFieldInfo(bmsFieldInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除模板字段填写详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fieldInfo:remove")
|
||||
@Log(title = "模板字段填写详情", businessType = BusinessType.DELETE)
|
||||
@PostMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(bmsFieldInfoService.deleteBmsFieldInfoByIds(ids));
|
||||
}
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.controller;
|
||||
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFileInfo;
|
||||
import com.ruoyi.jjh.declaration.service.IBmsFileInfoService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 文件存储说明详情Controller
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/system/fileInfo")
|
||||
public class BmsFileInfoController extends BaseController {
|
||||
@Autowired
|
||||
private IBmsFileInfoService bmsFileInfoService;
|
||||
|
||||
/**
|
||||
* 查询文件存储说明详情列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fileInfo:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(BmsFileInfo bmsFileInfo) {
|
||||
startPage();
|
||||
List<BmsFileInfo> list = bmsFileInfoService.selectBmsFileInfoList(bmsFileInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出文件存储说明详情列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fileInfo:export")
|
||||
@Log(title = "文件存储说明详情", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, BmsFileInfo bmsFileInfo) {
|
||||
List<BmsFileInfo> list = bmsFileInfoService.selectBmsFileInfoList(bmsFileInfo);
|
||||
ExcelUtil<BmsFileInfo> util = new ExcelUtil<BmsFileInfo>(BmsFileInfo.class);
|
||||
util.exportExcel(response, list, "文件存储说明详情数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取文件存储说明详情详细信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fileInfo:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return success(bmsFileInfoService.selectBmsFileInfoById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增文件存储说明详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fileInfo:add")
|
||||
@Log(title = "文件存储说明详情", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody BmsFileInfo bmsFileInfo) {
|
||||
return toAjax(bmsFileInfoService.insertBmsFileInfo(bmsFileInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改文件存储说明详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fileInfo:edit")
|
||||
@Log(title = "文件存储说明详情", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
public AjaxResult edit(@RequestBody BmsFileInfo bmsFileInfo) {
|
||||
return toAjax(bmsFileInfoService.updateBmsFileInfo(bmsFileInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除文件存储说明详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fileInfo:remove")
|
||||
@Log(title = "文件存储说明详情", businessType = BusinessType.DELETE)
|
||||
@PostMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(bmsFileInfoService.deleteBmsFileInfoByIds(ids));
|
||||
}
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.controller;
|
||||
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFundingDetail;
|
||||
import com.ruoyi.jjh.declaration.service.IBmsFundingDetailService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 资金信息详情Controller
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/system/fundingDetail")
|
||||
public class BmsFundingDetailController extends BaseController {
|
||||
@Autowired
|
||||
private IBmsFundingDetailService bmsFundingDetailService;
|
||||
|
||||
/**
|
||||
* 查询资金信息详情列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingDetail:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(BmsFundingDetail bmsFundingDetail) {
|
||||
startPage();
|
||||
List<BmsFundingDetail> list = bmsFundingDetailService.selectBmsFundingDetailList(bmsFundingDetail);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出资金信息详情列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingDetail:export")
|
||||
@Log(title = "资金信息详情", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, BmsFundingDetail bmsFundingDetail) {
|
||||
List<BmsFundingDetail> list = bmsFundingDetailService.selectBmsFundingDetailList(bmsFundingDetail);
|
||||
ExcelUtil<BmsFundingDetail> util = new ExcelUtil<BmsFundingDetail>(BmsFundingDetail.class);
|
||||
util.exportExcel(response, list, "资金信息详情数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取资金信息详情详细信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingDetail:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return success(bmsFundingDetailService.selectBmsFundingDetailById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增资金信息详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingDetail:add")
|
||||
@Log(title = "资金信息详情", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody BmsFundingDetail bmsFundingDetail) {
|
||||
return toAjax(bmsFundingDetailService.insertBmsFundingDetail(bmsFundingDetail));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改资金信息详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingDetail:edit")
|
||||
@Log(title = "资金信息详情", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
public AjaxResult edit(@RequestBody BmsFundingDetail bmsFundingDetail) {
|
||||
return toAjax(bmsFundingDetailService.updateBmsFundingDetail(bmsFundingDetail));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除资金信息详情
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingDetail:remove")
|
||||
@Log(title = "资金信息详情", businessType = BusinessType.DELETE)
|
||||
@PostMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(bmsFundingDetailService.deleteBmsFundingDetailByIds(ids));
|
||||
}
|
||||
}
|
@ -1,54 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.controller;
|
||||
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsProjectInfo;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.OpenInterfaceApplyAddDto;
|
||||
import com.ruoyi.jjh.declaration.entity.vo.EnterpriseInfoTemplateVo;
|
||||
import com.ruoyi.jjh.declaration.service.IOpenInterfaceService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
|
||||
/**
|
||||
* 审批记录信息Controller
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-09
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/system/openInterface")
|
||||
public class BmsOpenInterfaceController extends BaseController {
|
||||
|
||||
@Autowired
|
||||
private IOpenInterfaceService iOpenInterfaceService;
|
||||
|
||||
// @GetMapping("/enterpriseInfo/{creditCode}")
|
||||
// public AjaxResult enterpriseInfo(@PathVariable("creditCode") String creditCode) {
|
||||
// EnterpriseInfoTemplateVo enterpriseInfoTemplateVo = iOpenInterfaceService.enterpriseList(creditCode);
|
||||
// return success(enterpriseInfoTemplateVo);
|
||||
// }
|
||||
|
||||
@Log(title = "新增申报记录", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody OpenInterfaceApplyAddDto openInterfaceApplyAddDto) {
|
||||
return toAjax(iOpenInterfaceService.insertOpenInterfaceApplyAddDto(openInterfaceApplyAddDto));
|
||||
}
|
||||
|
||||
@GetMapping("/{templateRecordId}")
|
||||
public AjaxResult getProjectInfo(@PathVariable("templateRecordId") Long templateRecordId) {
|
||||
BmsProjectInfo bmsProjectInfo = iOpenInterfaceService.getProjectInfo(templateRecordId);
|
||||
return success(bmsProjectInfo);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.controller;
|
||||
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsProjectInfo;
|
||||
import com.ruoyi.jjh.declaration.service.IBmsProjectInfoService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 项目基本信息Controller
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-09
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/system/projectInfo")
|
||||
public class BmsProjectInfoController extends BaseController {
|
||||
@Autowired
|
||||
private IBmsProjectInfoService bmsProjectInfoService;
|
||||
|
||||
/**
|
||||
* 查询项目基本信息列表
|
||||
*/
|
||||
// @RequiresPermissions("system:projectInfo:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(BmsProjectInfo bmsProjectInfo) {
|
||||
startPage();
|
||||
List<BmsProjectInfo> list = bmsProjectInfoService.selectBmsProjectInfoList(bmsProjectInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出项目基本信息列表
|
||||
*/
|
||||
// @RequiresPermissions("system:projectInfo:export")
|
||||
@Log(title = "项目基本信息", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, BmsProjectInfo bmsProjectInfo) {
|
||||
List<BmsProjectInfo> list = bmsProjectInfoService.selectBmsProjectInfoList(bmsProjectInfo);
|
||||
ExcelUtil<BmsProjectInfo> util = new ExcelUtil<BmsProjectInfo>(BmsProjectInfo.class);
|
||||
util.exportExcel(response, list, "项目基本信息数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取项目基本信息详细信息
|
||||
*/
|
||||
// @RequiresPermissions("system:projectInfo:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return success(bmsProjectInfoService.selectBmsProjectInfoById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增项目基本信息
|
||||
*/
|
||||
// @RequiresPermissions("system:projectInfo:add")
|
||||
@Log(title = "项目基本信息", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody BmsProjectInfo bmsProjectInfo) {
|
||||
return toAjax(bmsProjectInfoService.insertBmsProjectInfo(bmsProjectInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改项目基本信息
|
||||
*/
|
||||
// @RequiresPermissions("system:projectInfo:edit")
|
||||
@Log(title = "项目基本信息", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
public AjaxResult edit(@RequestBody BmsProjectInfo bmsProjectInfo) {
|
||||
return toAjax(bmsProjectInfoService.updateBmsProjectInfo(bmsProjectInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除项目基本信息
|
||||
*/
|
||||
// @RequiresPermissions("system:projectInfo:remove")
|
||||
@Log(title = "项目基本信息", businessType = BusinessType.DELETE)
|
||||
@PostMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(bmsProjectInfoService.deleteBmsProjectInfoByIds(ids));
|
||||
}
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.controller;
|
||||
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.jjh.declaration.entity.BsmFundingInfo;
|
||||
import com.ruoyi.jjh.declaration.service.IBsmFundingInfoService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 资金信息Controller
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/system/fundingInfo")
|
||||
public class BsmFundingInfoController extends BaseController {
|
||||
@Autowired
|
||||
private IBsmFundingInfoService bsmFundingInfoService;
|
||||
|
||||
/**
|
||||
* 查询资金信息列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingInfo:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(BsmFundingInfo bsmFundingInfo) {
|
||||
startPage();
|
||||
List<BsmFundingInfo> list = bsmFundingInfoService.selectBsmFundingInfoList(bsmFundingInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出资金信息列表
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingInfo:export")
|
||||
@Log(title = "资金信息", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, BsmFundingInfo bsmFundingInfo) {
|
||||
List<BsmFundingInfo> list = bsmFundingInfoService.selectBsmFundingInfoList(bsmFundingInfo);
|
||||
ExcelUtil<BsmFundingInfo> util = new ExcelUtil<BsmFundingInfo>(BsmFundingInfo.class);
|
||||
util.exportExcel(response, list, "资金信息数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取资金信息详细信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingInfo:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return success(bsmFundingInfoService.selectBsmFundingInfoById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增资金信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingInfo:add")
|
||||
@Log(title = "资金信息", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody BsmFundingInfo bsmFundingInfo) {
|
||||
return toAjax(bsmFundingInfoService.insertBsmFundingInfo(bsmFundingInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改资金信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingInfo:edit")
|
||||
@Log(title = "资金信息", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
public AjaxResult edit(@RequestBody BsmFundingInfo bsmFundingInfo) {
|
||||
return toAjax(bsmFundingInfoService.updateBsmFundingInfo(bsmFundingInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除资金信息
|
||||
*/
|
||||
// @RequiresPermissions("system:fundingInfo:remove")
|
||||
@Log(title = "资金信息", businessType = BusinessType.DELETE)
|
||||
@PostMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(bsmFundingInfoService.deleteBsmFundingInfoByIds(ids));
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 附件参数dto
|
||||
* <p>
|
||||
*
|
||||
* @className: AppendixParamDto
|
||||
* @author: emiya.xie
|
||||
* @create: 2023-03-03 10:46
|
||||
*/
|
||||
@Data
|
||||
public class AppendixParamDto {
|
||||
|
||||
/**
|
||||
* 附件id
|
||||
*/
|
||||
private Long id;
|
||||
/**
|
||||
* 其他
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String deliverablesName;
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 品牌打造奖补对象 bms_branding_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsBrandingAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/** 所获荣誉/所举办活动 */
|
||||
@Excel(name = "所获荣誉/所举办活动")
|
||||
private String honorsReceived;
|
||||
|
||||
/** 所属等级 */
|
||||
@Excel(name = "所属等级")
|
||||
private Long level;
|
||||
|
||||
/** 证明材料 */
|
||||
@Excel(name = "证明材料")
|
||||
private String evidence;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,48 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 载体建设奖补对象 bms_carrier_construction_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsCarrierConstructionAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 文体企业数量占比 */
|
||||
@Excel(name = "文体企业数量占比")
|
||||
private String quantityProportion;
|
||||
|
||||
/** 文体企业营收占比 */
|
||||
@Excel(name = "文体企业营收占比")
|
||||
private String revenueProportion;
|
||||
|
||||
/** 文体企业从业人员占比 */
|
||||
@Excel(name = "文体企业从业人员占比")
|
||||
private String personnelProportion;
|
||||
|
||||
/** 相关佐证材料 */
|
||||
@Excel(name = "相关佐证材料")
|
||||
private String supportingMaterials;
|
||||
|
||||
/** 项目工商登记许可 */
|
||||
@Excel(name = "项目工商登记许可")
|
||||
private String businessLicense;
|
||||
|
||||
/** 消防验收报告 */
|
||||
@Excel(name = "消防验收报告")
|
||||
private String fireReport;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,35 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 信用管理奖补对象 bms_credit_management
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsCreditManagementAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 项目方案(包括项目基本情况介绍、项目投资情况以及实施进展、项目目标及取得的主要成效) */
|
||||
@Excel(name = "项目方案")
|
||||
private String projectPlan;
|
||||
|
||||
/** 资金使用说明(项目未完成的需提供,内容主要包括项目计划投资额,投资明细,目前已完成投资情况和后续投入计划等) */
|
||||
@Excel(name = "资金使用说明")
|
||||
private String usesFunds;
|
||||
|
||||
/** 项目专项审计报告(项目已完成的需提供) */
|
||||
@Excel(name = "项目专项审计报告")
|
||||
private String auditReport;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 模板字段填写详情对象 bms_field_info
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@Data
|
||||
public class BmsFieldInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 详情id */
|
||||
@Excel(name = "详情id")
|
||||
private Long detailId;
|
||||
|
||||
/** 字段名称 */
|
||||
@Excel(name = "字段名称")
|
||||
private String fieldName;
|
||||
|
||||
/** 字段说明 */
|
||||
@Excel(name = "字段说明")
|
||||
private String fieldResult;
|
||||
|
||||
|
||||
}
|
@ -1,35 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 文件存储说明详情对象 bms_file_info
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@Data
|
||||
public class BmsFileInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 详情id */
|
||||
@Excel(name = "详情id")
|
||||
private Long detailId;
|
||||
|
||||
/** 文件名称 */
|
||||
@Excel(name = "文件名称")
|
||||
private String fileName;
|
||||
|
||||
/** 文件说明 */
|
||||
@Excel(name = "文件说明")
|
||||
private String fileDescription;
|
||||
|
||||
/** 文件地址 */
|
||||
@Excel(name = "文件地址")
|
||||
private String fileUrl;
|
||||
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 5G+工业互联网奖补对象 bms_industrial_internet_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsIndustrialInternetAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/** 荣誉名称 */
|
||||
@Excel(name = "荣誉名称")
|
||||
private String honoraryName;
|
||||
|
||||
/** 证明材料 */
|
||||
@Excel(name = "证明材料")
|
||||
private String material;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 两业融合奖补对象 bms_integration_industries
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsIntegrationIndustriesAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Excel(name = "申报类型",readConverterExp = "1=两业融合示范企业,2=制造业企业设立财务独立核算的制造服务业职能部门,3=制造业企业剥离服务业务成立独立的法人")
|
||||
private Integer declarationType;
|
||||
|
||||
/** 证明材料 */
|
||||
@Excel(name = "证明材料")
|
||||
private String evidence;
|
||||
|
||||
/** 营业执照 */
|
||||
@Excel(name = "营业执照")
|
||||
private String businessLicense;
|
||||
|
||||
/** 完税证明 */
|
||||
@Excel(name = "完税证明")
|
||||
private String taxPaymentCertificate;
|
||||
|
||||
/** 审计报告 */
|
||||
@Excel(name = "审计报告")
|
||||
private String auditReport;
|
||||
|
||||
/** 股权架构图 */
|
||||
@Excel(name = "股权架构图")
|
||||
private String equityStructureChart;
|
||||
|
||||
/** 项目申报报告(含企业基本情况和项目基本情况) */
|
||||
@Excel(name = "项目申报报告")
|
||||
private String declarationReport;
|
||||
|
||||
/** 独立核算相关证明 */
|
||||
@Excel(name = "独立核算相关证明")
|
||||
private String independentAccounting;
|
||||
|
||||
/** 验资报告 */
|
||||
@Excel(name = "验资报告")
|
||||
private String capitalVerificationReport;
|
||||
|
||||
/** 证明材料 */
|
||||
@Excel(name = "证明材料")
|
||||
private String otherEvidence;
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 物流发展奖补对象 bms_logistics_development_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsLogisticsDevelopmentAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 荣誉证明文件 */
|
||||
@Excel(name = "荣誉证明文件")
|
||||
private String honorCertificate;
|
||||
|
||||
/** 平台名称 */
|
||||
@Excel(name = "平台名称")
|
||||
private String platformName;
|
||||
|
||||
/** 企业投资项目备案通知书或核准批复文件 */
|
||||
@Excel(name = "企业投资项目备案通知书或核准批复文件")
|
||||
private String filingNotice;
|
||||
|
||||
/** 会计师事务所出具的企业财务报表审计报告 */
|
||||
@Excel(name = "会计师事务所出具的企业财务报表审计报告")
|
||||
private String auditReport;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 制造服务业有效投入奖补对象 bms_manufacturing_services_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsManufacturingServicesAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 企业投资项目备案通知书或核准批复文件 */
|
||||
@Excel(name = "企业投资项目备案通知书或核准批复文件")
|
||||
private String filingNotice;
|
||||
|
||||
/** 购置设备发票清单及发票扫描件 */
|
||||
@Excel(name = "购置设备发票清单及发票扫描件")
|
||||
private String invoice;
|
||||
|
||||
/** 会计师事务所出具的企业申报项目购置设备情况的专项审计报告 */
|
||||
@Excel(name = "会计师事务所出具的企业申报项目购置设备情况的专项审计报告")
|
||||
private String auditReport;
|
||||
|
||||
/** 会计师事务所出具的企业财务报表审计报告 */
|
||||
@Excel(name = "会计师事务所出具的企业财务报表审计报告")
|
||||
private String financialStatements;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 平台建设奖补对象 bms_platform_construction_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsPlatformConstructionAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 平台(项目)名称 */
|
||||
@Excel(name = "平台(项目)名称")
|
||||
private String platformName;
|
||||
|
||||
/** 合作协议 */
|
||||
@Excel(name = "合作协议")
|
||||
private String agreement;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,55 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 项目落户奖补对象 bms_project_settlement_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsProjectSettlementAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "申报单位成立时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "申报单位成立时间")
|
||||
private Date establishTime;
|
||||
|
||||
@Excel(name = "截至目前员工人数")
|
||||
@ApiModelProperty(value = "截至目前员工人数")
|
||||
private Long employeeNum;
|
||||
|
||||
@ApiModelProperty(value = "应收列表")
|
||||
private List<BmsFundingDetailAddDto> fundingDetailList;
|
||||
|
||||
@Excel(name = "招商协议")
|
||||
@ApiModelProperty(value = "招商协议")
|
||||
private String agreement;
|
||||
|
||||
@Excel(name = "验资报告")
|
||||
@ApiModelProperty(value = "验资报告")
|
||||
private String report;
|
||||
|
||||
@Excel(name = "其他材料")
|
||||
@ApiModelProperty(value = "其他材料")
|
||||
private String otherMaterials;
|
||||
|
||||
@Excel(name = "营业执照")
|
||||
@ApiModelProperty(value = "营业执照")
|
||||
private String businessLicense;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 场景开放奖补对象 bms_scene_opening_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsSceneOpeningAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 项目名称 */
|
||||
@Excel(name = "项目名称")
|
||||
private String projectName;
|
||||
|
||||
/** 所属类型 */
|
||||
@Excel(name = "所属类型")
|
||||
private Long type;
|
||||
|
||||
/** 公示、发文证明、专家评分表 */
|
||||
@Excel(name = "公示、发文证明、专家评分表")
|
||||
private String material;
|
||||
|
||||
@ApiModelProperty(value = "在线申报记录id")
|
||||
private Long declarationId;
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 市级评定Dto
|
||||
* <p>
|
||||
*
|
||||
* @className: MunicipalReviewInfoDto
|
||||
* @author: emiya.xie
|
||||
* @create: 2023-09-13 16:30
|
||||
*/
|
||||
@Data
|
||||
public class MunicipalReviewDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "市级评定信息-old")
|
||||
private List<MunicipalReviewInfoDto> list;
|
||||
|
||||
@ApiModelProperty(value = "市级评定信息-new")
|
||||
private List<BmsMunicipalBureauReviewQueryDto> reviewList;
|
||||
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 市级评定
|
||||
* <p>
|
||||
*
|
||||
* @className: MunicipalReviewInfoDto
|
||||
* @author: emiya.xie
|
||||
* @create: 2023-09-13 16:30
|
||||
*/
|
||||
@Data
|
||||
public class MunicipalReviewInfoDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "记录id")
|
||||
private Long declarationId;
|
||||
|
||||
@ApiModelProperty(value = "企业id")
|
||||
private Long enterpriseId;
|
||||
|
||||
@ApiModelProperty(value = "企业名称")
|
||||
private String enterpriseName;
|
||||
|
||||
@ApiModelProperty(value = "企业统一信用代码")
|
||||
private String creditCode;
|
||||
|
||||
@ApiModelProperty(value = "申报类型说明")
|
||||
private String declarationTypeStr;
|
||||
|
||||
@ApiModelProperty(value = "年份")
|
||||
private String year;
|
||||
|
||||
@ApiModelProperty(value = "市级评定结果")
|
||||
private String result;
|
||||
|
||||
@ApiModelProperty(value = "结果")
|
||||
private Long status;
|
||||
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 申请记录信息新增-开放
|
||||
* <p>
|
||||
*
|
||||
* @className: OpenInterfaceApplyAddDto
|
||||
* @author: emiya.xie
|
||||
* @create: 2023-09-12 14:42
|
||||
*/
|
||||
@Data
|
||||
public class OpenInterfaceApplyAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "申报模版类型")
|
||||
private Integer declarationTemplateType;
|
||||
|
||||
@ApiModelProperty(value = "项目落户奖补新增Dto")
|
||||
private BmsProjectSettlementAwardAddDto bmsProjectSettlementAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "做大做强奖补新增Dto")
|
||||
private BmsBigStrongAwardAddDto bmsBigStrongAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "载体建设奖补新增Dto")
|
||||
private BmsCarrierConstructionAwardAddDto bmsCarrierConstructionAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "台建设奖补新增Dto")
|
||||
private BmsPlatformConstructionAwardAddDto bmsPlatformConstructionAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "品牌打造奖补新增Dto")
|
||||
private BmsBrandingAwardAddDto bmsBrandingAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "场景开放奖补新增Dto")
|
||||
private BmsSceneOpeningAwardAddDto bmsSceneOpeningAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "信用管理奖补新增Dto")
|
||||
private BmsCreditManagementAddDto bmsCreditManagementAddDto;
|
||||
|
||||
@ApiModelProperty(value = "5G+工业互联网奖补新增Dto")
|
||||
private BmsIndustrialInternetAwardAddDto bmsIndustrialInternetAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "制造服务业有效投入奖补新增Dto")
|
||||
private BmsManufacturingServicesAwardAddDto bmsManufacturingServicesAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "物流发展奖补新增Dto")
|
||||
private BmsLogisticsDevelopmentAwardAddDto bmsLogisticsDevelopmentAwardAddDto;
|
||||
|
||||
@ApiModelProperty(value = "两业融合奖补新增Dto")
|
||||
private BmsIntegrationIndustriesAddDto bmsIntegrationIndustriesAddDto;
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 上传内容
|
||||
* <p>
|
||||
*
|
||||
* @className: UploadDto
|
||||
* @author: emiya.xie
|
||||
* @create: 2023-03-01 09:53
|
||||
*/
|
||||
@Data
|
||||
public class UploadDto {
|
||||
|
||||
private String name;
|
||||
|
||||
private String url;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.vo;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsBigStrongAward;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFundingDetail;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 做大做强奖详情对象 bms_big_strong_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsBigStrongAwardQueryVo extends BmsBigStrongAward {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "应收列表")
|
||||
@JSONField(serialize = false)
|
||||
private List<BmsFundingDetail> fundingDetailList;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.vo;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFundingDetail;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsProjectSettlementAward;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 项目落户奖补对象 bms_project_settlement_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsProjectSettlementAwardQueryVo extends BmsProjectSettlementAward {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "应收列表")
|
||||
@JSONField(serialize = false)
|
||||
private List<BmsFundingDetail> fundingDetailList;
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.entity.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsEnterpriseBasicInfoAddDto;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsFundingDetailAddDto;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 项目落户奖补对象 bms_project_settlement_award
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class BmsProjectSettlementAwardVo extends BmsEnterpriseBasicInfoAddDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "记录id")
|
||||
private Long id;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "申报单位成立时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "申报单位成立时间")
|
||||
private Date establishTime;
|
||||
|
||||
@Excel(name = "截至目前员工人数")
|
||||
@ApiModelProperty(value = "截至目前员工人数")
|
||||
private Long employeeNum;
|
||||
|
||||
@ApiModelProperty(value = "应收列表")
|
||||
private List<BmsFundingDetailAddDto> fundingDetailList;
|
||||
|
||||
@Excel(name = "招商协议")
|
||||
@ApiModelProperty(value = "招商协议")
|
||||
private String agreement;
|
||||
|
||||
@Excel(name = "验资报告")
|
||||
@ApiModelProperty(value = "验资报告")
|
||||
private String report;
|
||||
|
||||
@Excel(name = "其他材料")
|
||||
@ApiModelProperty(value = "其他材料")
|
||||
private String otherMaterials;
|
||||
|
||||
@Excel(name = "营业执照")
|
||||
@ApiModelProperty(value = "营业执照")
|
||||
private String businessLicense;
|
||||
|
||||
@ApiModelProperty(value = "创建者")
|
||||
private String createBy;
|
||||
|
||||
@ApiModelProperty(value = "创建时间")
|
||||
private Date createTime;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
}
|
@ -1,63 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsBigStrongAward;
|
||||
import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 做大做强奖详情Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsBigStrongAwardMapper extends BaseMapper<BmsBigStrongAward> {
|
||||
/**
|
||||
* 查询做大做强奖详情
|
||||
*
|
||||
* @param id 做大做强奖详情主键
|
||||
* @return 做大做强奖详情
|
||||
*/
|
||||
public BmsBigStrongAwardQueryVo selectBmsBigStrongAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询做大做强奖详情列表
|
||||
*
|
||||
* @param bmsBigStrongAward 做大做强奖详情
|
||||
* @return 做大做强奖详情集合
|
||||
*/
|
||||
public List<BmsBigStrongAward> selectBmsBigStrongAwardList(BmsBigStrongAward bmsBigStrongAward);
|
||||
|
||||
/**
|
||||
* 新增做大做强奖详情
|
||||
*
|
||||
* @param bmsBigStrongAward 做大做强奖详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsBigStrongAward(BmsBigStrongAward bmsBigStrongAward);
|
||||
|
||||
/**
|
||||
* 修改做大做强奖详情
|
||||
*
|
||||
* @param bmsBigStrongAward 做大做强奖详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsBigStrongAward(BmsBigStrongAward bmsBigStrongAward);
|
||||
|
||||
/**
|
||||
* 删除做大做强奖详情
|
||||
*
|
||||
* @param id 做大做强奖详情主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBigStrongAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除做大做强奖详情
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBigStrongAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsBrandingAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 品牌打造奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsBrandingAwardMapper extends BaseMapper<BmsBrandingAward> {
|
||||
/**
|
||||
* 查询品牌打造奖补
|
||||
*
|
||||
* @param id 品牌打造奖补主键
|
||||
* @return 品牌打造奖补
|
||||
*/
|
||||
public BmsBrandingAward selectBmsBrandingAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询品牌打造奖补列表
|
||||
*
|
||||
* @param bmsBrandingAward 品牌打造奖补
|
||||
* @return 品牌打造奖补集合
|
||||
*/
|
||||
public List<BmsBrandingAward> selectBmsBrandingAwardList(BmsBrandingAward bmsBrandingAward);
|
||||
|
||||
/**
|
||||
* 新增品牌打造奖补
|
||||
*
|
||||
* @param bmsBrandingAward 品牌打造奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsBrandingAward(BmsBrandingAward bmsBrandingAward);
|
||||
|
||||
/**
|
||||
* 修改品牌打造奖补
|
||||
*
|
||||
* @param bmsBrandingAward 品牌打造奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsBrandingAward(BmsBrandingAward bmsBrandingAward);
|
||||
|
||||
/**
|
||||
* 删除品牌打造奖补
|
||||
*
|
||||
* @param id 品牌打造奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBrandingAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除品牌打造奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBrandingAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsCarrierConstructionAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 载体建设奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsCarrierConstructionAwardMapper extends BaseMapper<BmsCarrierConstructionAward> {
|
||||
/**
|
||||
* 查询载体建设奖补
|
||||
*
|
||||
* @param id 载体建设奖补主键
|
||||
* @return 载体建设奖补
|
||||
*/
|
||||
public BmsCarrierConstructionAward selectBmsCarrierConstructionAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询载体建设奖补列表
|
||||
*
|
||||
* @param bmsCarrierConstructionAward 载体建设奖补
|
||||
* @return 载体建设奖补集合
|
||||
*/
|
||||
public List<BmsCarrierConstructionAward> selectBmsCarrierConstructionAwardList(BmsCarrierConstructionAward bmsCarrierConstructionAward);
|
||||
|
||||
/**
|
||||
* 新增载体建设奖补
|
||||
*
|
||||
* @param bmsCarrierConstructionAward 载体建设奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsCarrierConstructionAward(BmsCarrierConstructionAward bmsCarrierConstructionAward);
|
||||
|
||||
/**
|
||||
* 修改载体建设奖补
|
||||
*
|
||||
* @param bmsCarrierConstructionAward 载体建设奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsCarrierConstructionAward(BmsCarrierConstructionAward bmsCarrierConstructionAward);
|
||||
|
||||
/**
|
||||
* 删除载体建设奖补
|
||||
*
|
||||
* @param id 载体建设奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCarrierConstructionAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除载体建设奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCarrierConstructionAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsCreditManagement;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 信用管理奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface BmsCreditManagementMapper extends BaseMapper<BmsCreditManagement> {
|
||||
/**
|
||||
* 查询信用管理奖补
|
||||
*
|
||||
* @param id 信用管理奖补主键
|
||||
* @return 信用管理奖补
|
||||
*/
|
||||
public BmsCreditManagement selectBmsCreditManagementById(Long id);
|
||||
|
||||
/**
|
||||
* 查询信用管理奖补列表
|
||||
*
|
||||
* @param bmsCreditManagement 信用管理奖补
|
||||
* @return 信用管理奖补集合
|
||||
*/
|
||||
public List<BmsCreditManagement> selectBmsCreditManagementList(BmsCreditManagement bmsCreditManagement);
|
||||
|
||||
/**
|
||||
* 新增信用管理奖补
|
||||
*
|
||||
* @param bmsCreditManagement 信用管理奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsCreditManagement(BmsCreditManagement bmsCreditManagement);
|
||||
|
||||
/**
|
||||
* 修改信用管理奖补
|
||||
*
|
||||
* @param bmsCreditManagement 信用管理奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsCreditManagement(BmsCreditManagement bmsCreditManagement);
|
||||
|
||||
/**
|
||||
* 删除信用管理奖补
|
||||
*
|
||||
* @param id 信用管理奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCreditManagementById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除信用管理奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCreditManagementByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFieldInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 模板字段填写详情Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface BmsFieldInfoMapper extends BaseMapper<BmsFieldInfo> {
|
||||
/**
|
||||
* 查询模板字段填写详情
|
||||
*
|
||||
* @param id 模板字段填写详情主键
|
||||
* @return 模板字段填写详情
|
||||
*/
|
||||
public BmsFieldInfo selectBmsFieldInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询模板字段填写详情列表
|
||||
*
|
||||
* @param bmsFieldInfo 模板字段填写详情
|
||||
* @return 模板字段填写详情集合
|
||||
*/
|
||||
public List<BmsFieldInfo> selectBmsFieldInfoList(BmsFieldInfo bmsFieldInfo);
|
||||
|
||||
/**
|
||||
* 新增模板字段填写详情
|
||||
*
|
||||
* @param bmsFieldInfo 模板字段填写详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsFieldInfo(BmsFieldInfo bmsFieldInfo);
|
||||
|
||||
/**
|
||||
* 修改模板字段填写详情
|
||||
*
|
||||
* @param bmsFieldInfo 模板字段填写详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsFieldInfo(BmsFieldInfo bmsFieldInfo);
|
||||
|
||||
/**
|
||||
* 删除模板字段填写详情
|
||||
*
|
||||
* @param id 模板字段填写详情主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsFieldInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除模板字段填写详情
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsFieldInfoByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFileInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 文件存储说明详情Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface BmsFileInfoMapper extends BaseMapper<BmsFileInfo> {
|
||||
/**
|
||||
* 查询文件存储说明详情
|
||||
*
|
||||
* @param id 文件存储说明详情主键
|
||||
* @return 文件存储说明详情
|
||||
*/
|
||||
public BmsFileInfo selectBmsFileInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询文件存储说明详情列表
|
||||
*
|
||||
* @param bmsFileInfo 文件存储说明详情
|
||||
* @return 文件存储说明详情集合
|
||||
*/
|
||||
public List<BmsFileInfo> selectBmsFileInfoList(BmsFileInfo bmsFileInfo);
|
||||
|
||||
/**
|
||||
* 新增文件存储说明详情
|
||||
*
|
||||
* @param bmsFileInfo 文件存储说明详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsFileInfo(BmsFileInfo bmsFileInfo);
|
||||
|
||||
/**
|
||||
* 修改文件存储说明详情
|
||||
*
|
||||
* @param bmsFileInfo 文件存储说明详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsFileInfo(BmsFileInfo bmsFileInfo);
|
||||
|
||||
/**
|
||||
* 删除文件存储说明详情
|
||||
*
|
||||
* @param id 文件存储说明详情主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsFileInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除文件存储说明详情
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsFileInfoByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsFundingDetail;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 资金信息详情Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface BmsFundingDetailMapper extends BaseMapper<BmsFundingDetail> {
|
||||
/**
|
||||
* 查询资金信息详情
|
||||
*
|
||||
* @param id 资金信息详情主键
|
||||
* @return 资金信息详情
|
||||
*/
|
||||
public BmsFundingDetail selectBmsFundingDetailById(Long id);
|
||||
|
||||
/**
|
||||
* 查询资金信息详情列表
|
||||
*
|
||||
* @param bmsFundingDetail 资金信息详情
|
||||
* @return 资金信息详情集合
|
||||
*/
|
||||
public List<BmsFundingDetail> selectBmsFundingDetailList(BmsFundingDetail bmsFundingDetail);
|
||||
|
||||
/**
|
||||
* 新增资金信息详情
|
||||
*
|
||||
* @param bmsFundingDetail 资金信息详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsFundingDetail(BmsFundingDetail bmsFundingDetail);
|
||||
|
||||
/**
|
||||
* 修改资金信息详情
|
||||
*
|
||||
* @param bmsFundingDetail 资金信息详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsFundingDetail(BmsFundingDetail bmsFundingDetail);
|
||||
|
||||
/**
|
||||
* 删除资金信息详情
|
||||
*
|
||||
* @param id 资金信息详情主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsFundingDetailById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除资金信息详情
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsFundingDetailByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsIndustrialInternetAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 5G+工业互联网奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsIndustrialInternetAwardMapper extends BaseMapper<BmsIndustrialInternetAward> {
|
||||
/**
|
||||
* 查询5G+工业互联网奖补
|
||||
*
|
||||
* @param id 5G+工业互联网奖补主键
|
||||
* @return 5G+工业互联网奖补
|
||||
*/
|
||||
public BmsIndustrialInternetAward selectBmsIndustrialInternetAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询5G+工业互联网奖补列表
|
||||
*
|
||||
* @param bmsIndustrialInternetAward 5G+工业互联网奖补
|
||||
* @return 5G+工业互联网奖补集合
|
||||
*/
|
||||
public List<BmsIndustrialInternetAward> selectBmsIndustrialInternetAwardList(BmsIndustrialInternetAward bmsIndustrialInternetAward);
|
||||
|
||||
/**
|
||||
* 新增5G+工业互联网奖补
|
||||
*
|
||||
* @param bmsIndustrialInternetAward 5G+工业互联网奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsIndustrialInternetAward(BmsIndustrialInternetAward bmsIndustrialInternetAward);
|
||||
|
||||
/**
|
||||
* 修改5G+工业互联网奖补
|
||||
*
|
||||
* @param bmsIndustrialInternetAward 5G+工业互联网奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsIndustrialInternetAward(BmsIndustrialInternetAward bmsIndustrialInternetAward);
|
||||
|
||||
/**
|
||||
* 删除5G+工业互联网奖补
|
||||
*
|
||||
* @param id 5G+工业互联网奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsIndustrialInternetAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除5G+工业互联网奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsIndustrialInternetAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsIntegrationIndustries;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 两业融合奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface BmsIntegrationIndustriesMapper extends BaseMapper<BmsIntegrationIndustries> {
|
||||
/**
|
||||
* 查询两业融合奖补
|
||||
*
|
||||
* @param id 两业融合奖补主键
|
||||
* @return 两业融合奖补
|
||||
*/
|
||||
public BmsIntegrationIndustries selectBmsIntegrationIndustriesById(Long id);
|
||||
|
||||
/**
|
||||
* 查询两业融合奖补列表
|
||||
*
|
||||
* @param bmsIntegrationIndustries 两业融合奖补
|
||||
* @return 两业融合奖补集合
|
||||
*/
|
||||
public List<BmsIntegrationIndustries> selectBmsIntegrationIndustriesList(BmsIntegrationIndustries bmsIntegrationIndustries);
|
||||
|
||||
/**
|
||||
* 新增两业融合奖补
|
||||
*
|
||||
* @param bmsIntegrationIndustries 两业融合奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsIntegrationIndustries(BmsIntegrationIndustries bmsIntegrationIndustries);
|
||||
|
||||
/**
|
||||
* 修改两业融合奖补
|
||||
*
|
||||
* @param bmsIntegrationIndustries 两业融合奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsIntegrationIndustries(BmsIntegrationIndustries bmsIntegrationIndustries);
|
||||
|
||||
/**
|
||||
* 删除两业融合奖补
|
||||
*
|
||||
* @param id 两业融合奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsIntegrationIndustriesById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除两业融合奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsIntegrationIndustriesByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsLogisticsDevelopmentAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 物流发展奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsLogisticsDevelopmentAwardMapper extends BaseMapper<BmsLogisticsDevelopmentAward> {
|
||||
/**
|
||||
* 查询物流发展奖补
|
||||
*
|
||||
* @param id 物流发展奖补主键
|
||||
* @return 物流发展奖补
|
||||
*/
|
||||
public BmsLogisticsDevelopmentAward selectBmsLogisticsDevelopmentAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询物流发展奖补列表
|
||||
*
|
||||
* @param bmsLogisticsDevelopmentAward 物流发展奖补
|
||||
* @return 物流发展奖补集合
|
||||
*/
|
||||
public List<BmsLogisticsDevelopmentAward> selectBmsLogisticsDevelopmentAwardList(BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward);
|
||||
|
||||
/**
|
||||
* 新增物流发展奖补
|
||||
*
|
||||
* @param bmsLogisticsDevelopmentAward 物流发展奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsLogisticsDevelopmentAward(BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward);
|
||||
|
||||
/**
|
||||
* 修改物流发展奖补
|
||||
*
|
||||
* @param bmsLogisticsDevelopmentAward 物流发展奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsLogisticsDevelopmentAward(BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward);
|
||||
|
||||
/**
|
||||
* 删除物流发展奖补
|
||||
*
|
||||
* @param id 物流发展奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsLogisticsDevelopmentAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除物流发展奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsLogisticsDevelopmentAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsManufacturingServicesAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 制造服务业有效投入奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsManufacturingServicesAwardMapper extends BaseMapper<BmsManufacturingServicesAward> {
|
||||
/**
|
||||
* 查询制造服务业有效投入奖补
|
||||
*
|
||||
* @param id 制造服务业有效投入奖补主键
|
||||
* @return 制造服务业有效投入奖补
|
||||
*/
|
||||
public BmsManufacturingServicesAward selectBmsManufacturingServicesAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询制造服务业有效投入奖补列表
|
||||
*
|
||||
* @param bmsManufacturingServicesAward 制造服务业有效投入奖补
|
||||
* @return 制造服务业有效投入奖补集合
|
||||
*/
|
||||
public List<BmsManufacturingServicesAward> selectBmsManufacturingServicesAwardList(BmsManufacturingServicesAward bmsManufacturingServicesAward);
|
||||
|
||||
/**
|
||||
* 新增制造服务业有效投入奖补
|
||||
*
|
||||
* @param bmsManufacturingServicesAward 制造服务业有效投入奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsManufacturingServicesAward(BmsManufacturingServicesAward bmsManufacturingServicesAward);
|
||||
|
||||
/**
|
||||
* 修改制造服务业有效投入奖补
|
||||
*
|
||||
* @param bmsManufacturingServicesAward 制造服务业有效投入奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsManufacturingServicesAward(BmsManufacturingServicesAward bmsManufacturingServicesAward);
|
||||
|
||||
/**
|
||||
* 删除制造服务业有效投入奖补
|
||||
*
|
||||
* @param id 制造服务业有效投入奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsManufacturingServicesAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除制造服务业有效投入奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsManufacturingServicesAwardByIds(Long[] ids);
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsOutQuitProducts;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsOutQuitProducts;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 2024年度淘汰落后和退出低端低效产能装备清单 Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface BmsOutQuitProductsMapper extends BaseMapper<BmsOutQuitProducts> {
|
||||
|
||||
/**
|
||||
* 查询2024年度淘汰落后和退出低端低效产能装备清单列表
|
||||
*
|
||||
* @param bmsCreditManagement 信用管理奖补
|
||||
* @return 信用管理奖补集合
|
||||
*/
|
||||
List<BmsOutQuitProducts> selectBmsOutQuitProductsList(BmsOutQuitProducts bmsCreditManagement);
|
||||
|
||||
/**
|
||||
* 删除2024年度淘汰落后和退出低端低效产能装备清单
|
||||
*
|
||||
* @param id 信用管理奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
int deleteBmsOutQuitProductsById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除2024年度淘汰落后和退出低端低效产能装备清单
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
int deleteBmsOutQuitProductsByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 平台建设奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsPlatformConstructionAwardMapper extends BaseMapper<BmsPlatformConstructionAward> {
|
||||
/**
|
||||
* 查询平台建设奖补
|
||||
*
|
||||
* @param id 平台建设奖补主键
|
||||
* @return 平台建设奖补
|
||||
*/
|
||||
public BmsPlatformConstructionAward selectBmsPlatformConstructionAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询平台建设奖补列表
|
||||
*
|
||||
* @param bmsPlatformConstructionAward 平台建设奖补
|
||||
* @return 平台建设奖补集合
|
||||
*/
|
||||
public List<BmsPlatformConstructionAward> selectBmsPlatformConstructionAwardList(BmsPlatformConstructionAward bmsPlatformConstructionAward);
|
||||
|
||||
/**
|
||||
* 新增平台建设奖补
|
||||
*
|
||||
* @param bmsPlatformConstructionAward 平台建设奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsPlatformConstructionAward(BmsPlatformConstructionAward bmsPlatformConstructionAward);
|
||||
|
||||
/**
|
||||
* 修改平台建设奖补
|
||||
*
|
||||
* @param bmsPlatformConstructionAward 平台建设奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsPlatformConstructionAward(BmsPlatformConstructionAward bmsPlatformConstructionAward);
|
||||
|
||||
/**
|
||||
* 删除平台建设奖补
|
||||
*
|
||||
* @param id 平台建设奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsPlatformConstructionAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除平台建设奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsPlatformConstructionAwardByIds(Long[] ids);
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsProjectInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 项目基本信息Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-09
|
||||
*/
|
||||
public interface BmsProjectInfoMapper extends BaseMapper<BmsProjectInfo> {
|
||||
/**
|
||||
* 查询项目基本信息
|
||||
*
|
||||
* @param id 项目基本信息主键
|
||||
* @return 项目基本信息
|
||||
*/
|
||||
public BmsProjectInfo selectBmsProjectInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询项目基本信息列表
|
||||
*
|
||||
* @param bmsProjectInfo 项目基本信息
|
||||
* @return 项目基本信息集合
|
||||
*/
|
||||
public List<BmsProjectInfo> selectBmsProjectInfoList(BmsProjectInfo bmsProjectInfo);
|
||||
|
||||
/**
|
||||
* 新增项目基本信息
|
||||
*
|
||||
* @param bmsProjectInfo 项目基本信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsProjectInfo(BmsProjectInfo bmsProjectInfo);
|
||||
|
||||
/**
|
||||
* 修改项目基本信息
|
||||
*
|
||||
* @param bmsProjectInfo 项目基本信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsProjectInfo(BmsProjectInfo bmsProjectInfo);
|
||||
|
||||
/**
|
||||
* 删除项目基本信息
|
||||
*
|
||||
* @param id 项目基本信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsProjectInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除项目基本信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsProjectInfoByIds(Long[] ids);
|
||||
|
||||
|
||||
public BmsProjectInfo getProjectInfo(Long templateRecordId);
|
||||
}
|
@ -1,63 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsProjectSettlementAward;
|
||||
import com.ruoyi.jjh.declaration.entity.vo.BmsProjectSettlementAwardQueryVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 项目落户奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsProjectSettlementAwardMapper extends BaseMapper<BmsProjectSettlementAward> {
|
||||
/**
|
||||
* 查询项目落户奖补
|
||||
*
|
||||
* @param id 项目落户奖补主键
|
||||
* @return 项目落户奖补
|
||||
*/
|
||||
public BmsProjectSettlementAwardQueryVo selectBmsProjectSettlementAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询项目落户奖补列表
|
||||
*
|
||||
* @param bmsProjectSettlementAward 项目落户奖补
|
||||
* @return 项目落户奖补集合
|
||||
*/
|
||||
public List<BmsProjectSettlementAward> selectBmsProjectSettlementAwardList(BmsProjectSettlementAward bmsProjectSettlementAward);
|
||||
|
||||
/**
|
||||
* 新增项目落户奖补
|
||||
*
|
||||
* @param bmsProjectSettlementAward 项目落户奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsProjectSettlementAward(BmsProjectSettlementAward bmsProjectSettlementAward);
|
||||
|
||||
/**
|
||||
* 修改项目落户奖补
|
||||
*
|
||||
* @param bmsProjectSettlementAward 项目落户奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsProjectSettlementAward(BmsProjectSettlementAward bmsProjectSettlementAward);
|
||||
|
||||
/**
|
||||
* 删除项目落户奖补
|
||||
*
|
||||
* @param id 项目落户奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsProjectSettlementAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除项目落户奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsProjectSettlementAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsSceneOpeningAward;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 场景开放奖补Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BmsSceneOpeningAwardMapper extends BaseMapper<BmsSceneOpeningAward> {
|
||||
/**
|
||||
* 查询场景开放奖补
|
||||
*
|
||||
* @param id 场景开放奖补主键
|
||||
* @return 场景开放奖补
|
||||
*/
|
||||
public BmsSceneOpeningAward selectBmsSceneOpeningAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询场景开放奖补列表
|
||||
*
|
||||
* @param bmsSceneOpeningAward 场景开放奖补
|
||||
* @return 场景开放奖补集合
|
||||
*/
|
||||
public List<BmsSceneOpeningAward> selectBmsSceneOpeningAwardList(BmsSceneOpeningAward bmsSceneOpeningAward);
|
||||
|
||||
/**
|
||||
* 新增场景开放奖补
|
||||
*
|
||||
* @param bmsSceneOpeningAward 场景开放奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsSceneOpeningAward(BmsSceneOpeningAward bmsSceneOpeningAward);
|
||||
|
||||
/**
|
||||
* 修改场景开放奖补
|
||||
*
|
||||
* @param bmsSceneOpeningAward 场景开放奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsSceneOpeningAward(BmsSceneOpeningAward bmsSceneOpeningAward);
|
||||
|
||||
/**
|
||||
* 删除场景开放奖补
|
||||
*
|
||||
* @param id 场景开放奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsSceneOpeningAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除场景开放奖补
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsSceneOpeningAwardByIds(Long[] ids);
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.jjh.declaration.entity.BsmFundingInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 资金信息Mapper接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface BsmFundingInfoMapper extends BaseMapper<BsmFundingInfo> {
|
||||
/**
|
||||
* 查询资金信息
|
||||
*
|
||||
* @param id 资金信息主键
|
||||
* @return 资金信息
|
||||
*/
|
||||
public BsmFundingInfo selectBsmFundingInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询资金信息列表
|
||||
*
|
||||
* @param bsmFundingInfo 资金信息
|
||||
* @return 资金信息集合
|
||||
*/
|
||||
public List<BsmFundingInfo> selectBsmFundingInfoList(BsmFundingInfo bsmFundingInfo);
|
||||
|
||||
/**
|
||||
* 新增资金信息
|
||||
*
|
||||
* @param bsmFundingInfo 资金信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBsmFundingInfo(BsmFundingInfo bsmFundingInfo);
|
||||
|
||||
/**
|
||||
* 修改资金信息
|
||||
*
|
||||
* @param bsmFundingInfo 资金信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBsmFundingInfo(BsmFundingInfo bsmFundingInfo);
|
||||
|
||||
/**
|
||||
* 删除资金信息
|
||||
*
|
||||
* @param id 资金信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBsmFundingInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除资金信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBsmFundingInfoByIds(Long[] ids);
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsBigStrongAward;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardAddDto;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardUpdateDto;
|
||||
import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 做大做强奖详情Service接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface IBmsBigStrongAwardService extends IService<BmsBigStrongAward> {
|
||||
/**
|
||||
* 查询做大做强奖详情
|
||||
*
|
||||
* @param id 做大做强奖详情主键
|
||||
* @return 做大做强奖详情
|
||||
*/
|
||||
public BmsBigStrongAwardQueryVo selectBmsBigStrongAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询做大做强奖详情列表
|
||||
*
|
||||
* @param bmsBigStrongAward 做大做强奖详情
|
||||
* @return 做大做强奖详情集合
|
||||
*/
|
||||
public List<BmsBigStrongAward> selectBmsBigStrongAwardList(BmsBigStrongAward bmsBigStrongAward);
|
||||
|
||||
/**
|
||||
* 新增做大做强奖详情
|
||||
*
|
||||
* @param bmsBigStrongAwardAddDto 做大做强奖详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsBigStrongAward(BmsBigStrongAwardAddDto bmsBigStrongAwardAddDto);
|
||||
|
||||
|
||||
/**
|
||||
* 修改做大做强奖详情
|
||||
*
|
||||
* @param bmsBigStrongAwardUpdateDto 做大做强奖详情
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsBigStrongAward(BmsBigStrongAwardUpdateDto bmsBigStrongAwardUpdateDto);
|
||||
|
||||
/**
|
||||
* 批量删除做大做强奖详情
|
||||
*
|
||||
* @param ids 需要删除的做大做强奖详情主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBigStrongAwardByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除做大做强奖详情信息
|
||||
*
|
||||
* @param id 做大做强奖详情主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBigStrongAwardById(Long id);
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsBrandingAward;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsBrandingAwardAddDto;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsBrandingAwardUpdateDto;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 品牌打造奖补Service接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface IBmsBrandingAwardService extends IService<BmsBrandingAward> {
|
||||
/**
|
||||
* 查询品牌打造奖补
|
||||
*
|
||||
* @param id 品牌打造奖补主键
|
||||
* @return 品牌打造奖补
|
||||
*/
|
||||
public BmsBrandingAward selectBmsBrandingAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询品牌打造奖补列表
|
||||
*
|
||||
* @param bmsBrandingAward 品牌打造奖补
|
||||
* @return 品牌打造奖补集合
|
||||
*/
|
||||
public List<BmsBrandingAward> selectBmsBrandingAwardList(BmsBrandingAward bmsBrandingAward);
|
||||
|
||||
/**
|
||||
* 新增品牌打造奖补
|
||||
*
|
||||
* @param bmsBrandingAwardAddDto 品牌打造奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsBrandingAward(BmsBrandingAwardAddDto bmsBrandingAwardAddDto);
|
||||
|
||||
|
||||
/**
|
||||
* 修改品牌打造奖补
|
||||
*
|
||||
* @param bmsBrandingAwardUpdateDto 品牌打造奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsBrandingAward(BmsBrandingAwardUpdateDto bmsBrandingAwardUpdateDto);
|
||||
|
||||
/**
|
||||
* 批量删除品牌打造奖补
|
||||
*
|
||||
* @param ids 需要删除的品牌打造奖补主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBrandingAwardByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除品牌打造奖补信息
|
||||
*
|
||||
* @param id 品牌打造奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsBrandingAwardById(Long id);
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsCarrierConstructionAward;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsCarrierConstructionAwardAddDto;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsCarrierConstructionAwardUpdateDto;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 载体建设奖补Service接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-08-25
|
||||
*/
|
||||
public interface IBmsCarrierConstructionAwardService extends IService<BmsCarrierConstructionAward> {
|
||||
/**
|
||||
* 查询载体建设奖补
|
||||
*
|
||||
* @param id 载体建设奖补主键
|
||||
* @return 载体建设奖补
|
||||
*/
|
||||
public BmsCarrierConstructionAward selectBmsCarrierConstructionAwardById(Long id);
|
||||
|
||||
/**
|
||||
* 查询载体建设奖补列表
|
||||
*
|
||||
* @param bmsCarrierConstructionAward 载体建设奖补
|
||||
* @return 载体建设奖补集合
|
||||
*/
|
||||
public List<BmsCarrierConstructionAward> selectBmsCarrierConstructionAwardList(BmsCarrierConstructionAward bmsCarrierConstructionAward);
|
||||
|
||||
/**
|
||||
* 新增载体建设奖补
|
||||
*
|
||||
* @param bmsCarrierConstructionAwardAddDto 载体建设奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsCarrierConstructionAward(BmsCarrierConstructionAwardAddDto bmsCarrierConstructionAwardAddDto);
|
||||
|
||||
|
||||
/**
|
||||
* 修改载体建设奖补
|
||||
*
|
||||
* @param bmsCarrierConstructionAwardUpdateDto 载体建设奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsCarrierConstructionAward(BmsCarrierConstructionAwardUpdateDto bmsCarrierConstructionAwardUpdateDto);
|
||||
|
||||
/**
|
||||
* 批量删除载体建设奖补
|
||||
*
|
||||
* @param ids 需要删除的载体建设奖补主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCarrierConstructionAwardByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除载体建设奖补信息
|
||||
*
|
||||
* @param id 载体建设奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCarrierConstructionAwardById(Long id);
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
package com.ruoyi.jjh.declaration.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.jjh.declaration.entity.BmsCreditManagement;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsCreditManagementAddDto;
|
||||
import com.ruoyi.jjh.declaration.entity.dto.BmsCreditManagementUpdateDto;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 信用管理奖补Service接口
|
||||
*
|
||||
* @author farben
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface IBmsCreditManagementService extends IService<BmsCreditManagement> {
|
||||
/**
|
||||
* 查询信用管理奖补
|
||||
*
|
||||
* @param id 信用管理奖补主键
|
||||
* @return 信用管理奖补
|
||||
*/
|
||||
public BmsCreditManagement selectBmsCreditManagementById(Long id);
|
||||
|
||||
/**
|
||||
* 查询信用管理奖补列表
|
||||
*
|
||||
* @param bmsCreditManagement 信用管理奖补
|
||||
* @return 信用管理奖补集合
|
||||
*/
|
||||
public List<BmsCreditManagement> selectBmsCreditManagementList(BmsCreditManagement bmsCreditManagement);
|
||||
|
||||
/**
|
||||
* 新增信用管理奖补
|
||||
*
|
||||
* @param bmsCreditManagementAddDto 信用管理奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBmsCreditManagement(BmsCreditManagementAddDto bmsCreditManagementAddDto);
|
||||
|
||||
|
||||
/**
|
||||
* 修改信用管理奖补
|
||||
*
|
||||
* @param bmsCreditManagementUpdateDto 信用管理奖补
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBmsCreditManagement(BmsCreditManagementUpdateDto bmsCreditManagementUpdateDto);
|
||||
|
||||
/**
|
||||
* 批量删除信用管理奖补
|
||||
*
|
||||
* @param ids 需要删除的信用管理奖补主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCreditManagementByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除信用管理奖补信息
|
||||
*
|
||||
* @param id 信用管理奖补主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBmsCreditManagementById(Long id);
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue