diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsBigStrongAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsBigStrongAwardController.java deleted file mode 100644 index d8034a3..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsBigStrongAwardController.java +++ /dev/null @@ -1,125 +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.BmsBigStrongAward; -import com.ruoyi.jjh.declaration.entity.BmsProjectSettlementAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsBigStrongAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 做大做强奖详情Controller - * - * @author farben - * @date 2023-08-25 - */ -@RestController -@Api(tags = "做大做强奖") -@RequestMapping("/system/bigStrongAward") -public class BmsBigStrongAwardController extends BaseController { - @Autowired - private IBmsBigStrongAwardService bmsBigStrongAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询做大做强奖详情列表 - */ -// @RequiresPermissions("system:bigStrongAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsBigStrongAward bmsBigStrongAward) { - startPage(); - List list = bmsBigStrongAwardService.selectBmsBigStrongAwardList(bmsBigStrongAward); - return getDataTable(list); - } - - /** - * 导出做大做强奖详情列表 - */ -// @RequiresPermissions("system:bigStrongAward:export") - @Log(title = "做大做强奖详情", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsBigStrongAward bmsBigStrongAward) { - List list = bmsBigStrongAwardService.selectBmsBigStrongAwardList(bmsBigStrongAward); - ExcelUtil util = new ExcelUtil(BmsBigStrongAward.class); - util.exportExcel(response, list, "做大做强奖详情数据"); - } - - /** - * 获取做大做强奖详情详细信息 - */ -// @RequiresPermissions("system:bigStrongAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsBigStrongAwardService.selectBmsBigStrongAwardById(id)); - } - - /** - * 新增做大做强奖详情 - */ -// @RequiresPermissions("system:bigStrongAward:add") - @Log(title = "做大做强奖详情", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsBigStrongAwardAddDto bmsBigStrongAwardAddDto) { - return toAjax(bmsBigStrongAwardService.insertBmsBigStrongAward(bmsBigStrongAwardAddDto)); - } - - /** - * 修改做大做强奖详情 - */ -// @RequiresPermissions("system:bigStrongAward:edit") - @Log(title = "做大做强奖详情", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsBigStrongAwardUpdateDto bmsBigStrongAwardUpdateDto) { - return toAjax(bmsBigStrongAwardService.updateBmsBigStrongAward(bmsBigStrongAwardUpdateDto)); - } - - /** - * 修改做大做强奖(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改做大做强奖(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改做大做强奖(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsBigStrongAward bmsBigStrongAward) { - bmsBigStrongAwardService.updateById(bmsBigStrongAward); - JProject jps = new JProject(); - jps.setId(bmsBigStrongAward.getJjhProjectId()); - jps.setFileJson("{" + - '"' + "企业近3年发展情况及未来发展计划" + '"' + ":" + '"' + bmsBigStrongAward.getDevelopmentPlan() + '"' + - "}"); - return toAjax(jProjectService.updateById(jps)); - } - - /** - * 删除做大做强奖详情 - */ -// @RequiresPermissions("system:bigStrongAward:remove") - @Log(title = "做大做强奖详情", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsBigStrongAwardService.deleteBmsBigStrongAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsBrandingAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsBrandingAwardController.java deleted file mode 100644 index 447717d..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsBrandingAwardController.java +++ /dev/null @@ -1,118 +0,0 @@ -package com.ruoyi.jjh.declaration.controller; - -import com.ruoyi.common.annotation.Log; -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.enums.BusinessType; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.jjh.declaration.entity.BmsBrandingAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsBrandingAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBrandingAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsBrandingAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.*; - -import javax.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 品牌打造奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "品牌打造奖补") -@RestController -@RequestMapping("/system/brandingAward") -public class BmsBrandingAwardController extends BaseController { - @Autowired - private IBmsBrandingAwardService bmsBrandingAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询品牌打造奖补列表 - */ -// @RequiresPermissions("system:brandingAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsBrandingAward bmsBrandingAward) { - startPage(); - List list = bmsBrandingAwardService.selectBmsBrandingAwardList(bmsBrandingAward); - return getDataTable(list); - } - - /** - * 导出品牌打造奖补列表 - */ -// @RequiresPermissions("system:brandingAward:export") - @Log(title = "品牌打造奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsBrandingAward bmsBrandingAward) { - List list = bmsBrandingAwardService.selectBmsBrandingAwardList(bmsBrandingAward); - ExcelUtil util = new ExcelUtil(BmsBrandingAward.class); - util.exportExcel(response, list, "品牌打造奖补数据"); - } - - /** - * 获取品牌打造奖补详细信息 - */ -// @RequiresPermissions("system:brandingAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsBrandingAwardService.selectBmsBrandingAwardById(id)); - } - - /** - * 新增品牌打造奖补 - */ -// @RequiresPermissions("system:brandingAward:add") - @Log(title = "品牌打造奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsBrandingAwardAddDto bmsBrandingAwardAddDto) { - return toAjax(bmsBrandingAwardService.insertBmsBrandingAward(bmsBrandingAwardAddDto)); - } - - /** - * 修改品牌打造奖补 - */ -// @RequiresPermissions("system:brandingAward:edit") - @Log(title = "品牌打造奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsBrandingAwardUpdateDto bmsBrandingAwardUpdateDto) { - return toAjax(bmsBrandingAwardService.updateBmsBrandingAward(bmsBrandingAwardUpdateDto)); - } - - /** - * 修改品牌打造奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改品牌打造奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改品牌打造奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsBrandingAward bmsBrandingAward) { - bmsBrandingAwardService.updateById(bmsBrandingAward); - JProject jp = new JProject(); - jp.setId(bmsBrandingAward.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + bmsBrandingAward.getEvidence() + '"' + - "}"); - - return toAjax(jProjectService.updateById(jp)); - } - - /** - * 删除品牌打造奖补 - */ -// @RequiresPermissions("system:brandingAward:remove") - @Log(title = "品牌打造奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsBrandingAwardService.deleteBmsBrandingAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsCarrierConstructionAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsCarrierConstructionAwardController.java deleted file mode 100644 index 1f61127..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsCarrierConstructionAwardController.java +++ /dev/null @@ -1,126 +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.BmsCarrierConstructionAward; -import com.ruoyi.jjh.declaration.entity.BmsProjectSettlementAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsCarrierConstructionAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsCarrierConstructionAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsCarrierConstructionAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 载体建设奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "载体建设奖补") -@RestController -@RequestMapping("/system/carrierConstructionAward") -public class BmsCarrierConstructionAwardController extends BaseController { - @Autowired - private IBmsCarrierConstructionAwardService bmsCarrierConstructionAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询载体建设奖补列表 - */ -// @RequiresPermissions("system:carrierConstructionAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsCarrierConstructionAward bmsCarrierConstructionAward) { - startPage(); - List list = bmsCarrierConstructionAwardService.selectBmsCarrierConstructionAwardList(bmsCarrierConstructionAward); - return getDataTable(list); - } - - /** - * 导出载体建设奖补列表 - */ -// @RequiresPermissions("system:carrierConstructionAward:export") - @Log(title = "载体建设奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsCarrierConstructionAward bmsCarrierConstructionAward) { - List list = bmsCarrierConstructionAwardService.selectBmsCarrierConstructionAwardList(bmsCarrierConstructionAward); - ExcelUtil util = new ExcelUtil(BmsCarrierConstructionAward.class); - util.exportExcel(response, list, "载体建设奖补数据"); - } - - /** - * 获取载体建设奖补详细信息 - */ -// @RequiresPermissions("system:carrierConstructionAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsCarrierConstructionAwardService.selectBmsCarrierConstructionAwardById(id)); - } - - /** - * 新增载体建设奖补 - */ -// @RequiresPermissions("system:carrierConstructionAward:add") - @Log(title = "载体建设奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsCarrierConstructionAwardAddDto bmsCarrierConstructionAwardAddDto) { - return toAjax(bmsCarrierConstructionAwardService.insertBmsCarrierConstructionAward(bmsCarrierConstructionAwardAddDto)); - } - - /** - * 修改载体建设奖补 - */ -// @RequiresPermissions("system:carrierConstructionAward:edit") - @Log(title = "载体建设奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsCarrierConstructionAwardUpdateDto bmsCarrierConstructionAwardUpdateDto) { - return toAjax(bmsCarrierConstructionAwardService.updateBmsCarrierConstructionAward(bmsCarrierConstructionAwardUpdateDto)); - } - - /** - * 修改载体建设奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改载体建设奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改载体建设奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsCarrierConstructionAward bmsCarrierConstructionAward) { - bmsCarrierConstructionAwardService.updateById(bmsCarrierConstructionAward); - JProject jp = new JProject(); - jp.setId(bmsCarrierConstructionAward.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "相关佐证资料" + '"' + ":" + '"' + bmsCarrierConstructionAward.getSupportingMaterials() + '"' + ','+ - '"' + "项目工商登记许可" + '"' + ":" + '"' + bmsCarrierConstructionAward.getBusinessLicense() + '"' + ','+ - '"' + "消防验收报告" + '"' + ":" + '"' + bmsCarrierConstructionAward.getFireReport() + '"' + - "}"); - return toAjax(jProjectService.updateById(jp)); - } - /** - * 删除载体建设奖补 - */ -// @RequiresPermissions("system:carrierConstructionAward:remove") - @Log(title = "载体建设奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsCarrierConstructionAwardService.deleteBmsCarrierConstructionAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsCreditManagementController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsCreditManagementController.java deleted file mode 100644 index f9460e9..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsCreditManagementController.java +++ /dev/null @@ -1,129 +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.BmsCreditManagement; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsCreditManagementAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsCreditManagementUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsCreditManagementService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 信用管理奖补Controller - * - * @author farben - * @date 2023-09-04 - */ -@Api(tags = "信用管理奖补") -@RestController -@RequestMapping("/system/creditManagement") -public class BmsCreditManagementController extends BaseController { - @Autowired - private IBmsCreditManagementService bmsCreditManagementService; - - - @Resource - private JProjectService jProjectService; - /** - * 查询信用管理奖补列表 - */ -// @RequiresPermissions("system:creditManagement:list") - @GetMapping("/list") - public TableDataInfo list(BmsCreditManagement bmsCreditManagement) { - startPage(); - List list = bmsCreditManagementService.selectBmsCreditManagementList(bmsCreditManagement); - return getDataTable(list); - } - - /** - * 导出信用管理奖补列表 - */ -// @RequiresPermissions("system:creditManagement:export") - @Log(title = "信用管理奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsCreditManagement bmsCreditManagement) { - List list = bmsCreditManagementService.selectBmsCreditManagementList(bmsCreditManagement); - ExcelUtil util = new ExcelUtil(BmsCreditManagement.class); - util.exportExcel(response, list, "信用管理奖补数据"); - } - - /** - * 获取信用管理奖补详细信息 - */ -// @RequiresPermissions("system:creditManagement:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsCreditManagementService.selectBmsCreditManagementById(id)); - } - - /** - * 新增信用管理奖补 - */ -// @RequiresPermissions("system:creditManagement:add") - @Log(title = "信用管理奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsCreditManagementAddDto bmsCreditManagementAddDto) { - return toAjax(bmsCreditManagementService.insertBmsCreditManagement(bmsCreditManagementAddDto)); - } - - /** - * 修改信用管理奖补 - */ -// @RequiresPermissions("system:creditManagement:edit") - @Log(title = "信用管理奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsCreditManagementUpdateDto bmsCreditManagementUpdateDto) { - return toAjax(bmsCreditManagementService.updateBmsCreditManagement(bmsCreditManagementUpdateDto)); - } - - /** - * 修改信用管理奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改信用管理奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改信用管理奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsCreditManagement bmsCreditManagement) { - bmsCreditManagementService.updateById(bmsCreditManagement); - JProject jp = new JProject(); - jp.setId(bmsCreditManagement.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "项目方案" + '"' + ":" + '"' + bmsCreditManagement.getProjectPlan() + '"' + ","+ - '"' + "资金使用说明" + '"' + ":" + '"' + bmsCreditManagement.getUsesFunds() + '"' + ","+ - '"' + "项目专项审计报告" + '"' + ":" + '"' + bmsCreditManagement.getAuditReport() + '"' + ","+ - "}"); - return toAjax(jProjectService.updateById(jp)); - } - - /** - * 删除信用管理奖补 - */ -// @RequiresPermissions("system:creditManagement:remove") - @Log(title = "信用管理奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsCreditManagementService.deleteBmsCreditManagementByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsDeclarationRecordsController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsDeclarationRecordsController.java index af2dbb4..7da1956 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsDeclarationRecordsController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsDeclarationRecordsController.java @@ -13,11 +13,9 @@ import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; import com.ruoyi.jjh.declaration.entity.dto.ApprovalDeclarationRecordsQueryDto; import com.ruoyi.jjh.declaration.entity.dto.BmsApprovalInfoUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsDeclarationRecordsAddDto; import com.ruoyi.jjh.declaration.entity.dto.BmsDeclarationRecordsDto; import com.ruoyi.jjh.declaration.entity.vo.ApprovalDeclarationRecordsQueryVo; import com.ruoyi.jjh.declaration.entity.vo.BmsDeclarationRecordsQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.BmsMunicipalBureauReviewQueryVo; import com.ruoyi.jjh.declaration.mapper.BmsDeclarationRecordsMapper; import com.ruoyi.jjh.declaration.service.IBmsDeclarationRecordsService; import io.swagger.annotations.Api; diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFieldInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFieldInfoController.java deleted file mode 100644 index 85b3a01..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFieldInfoController.java +++ /dev/null @@ -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 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 list = bmsFieldInfoService.selectBmsFieldInfoList(bmsFieldInfo); - ExcelUtil util = new ExcelUtil(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)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFileInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFileInfoController.java deleted file mode 100644 index a3020bf..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFileInfoController.java +++ /dev/null @@ -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 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 list = bmsFileInfoService.selectBmsFileInfoList(bmsFileInfo); - ExcelUtil util = new ExcelUtil(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)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFundingDetailController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFundingDetailController.java deleted file mode 100644 index e37befa..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsFundingDetailController.java +++ /dev/null @@ -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 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 list = bmsFundingDetailService.selectBmsFundingDetailList(bmsFundingDetail); - ExcelUtil util = new ExcelUtil(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)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsIndustrialInternetAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsIndustrialInternetAwardController.java deleted file mode 100644 index 4e25a95..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsIndustrialInternetAwardController.java +++ /dev/null @@ -1,124 +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.BmsIndustrialInternetAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsIndustrialInternetAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsIndustrialInternetAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsIndustrialInternetAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 5G+工业互联网奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "5G+工业互联网奖补") -@RestController -@RequestMapping("/system/industrialInternetAward") -public class BmsIndustrialInternetAwardController extends BaseController { - @Autowired - private IBmsIndustrialInternetAwardService bmsIndustrialInternetAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询5G+工业互联网奖补列表 - */ -// @RequiresPermissions("system:industrialInternetAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsIndustrialInternetAward bmsIndustrialInternetAward) { - startPage(); - List list = bmsIndustrialInternetAwardService.selectBmsIndustrialInternetAwardList(bmsIndustrialInternetAward); - return getDataTable(list); - } - - /** - * 导出5G+工业互联网奖补列表 - */ -// @RequiresPermissions("system:industrialInternetAward:export") - @Log(title = "5G+工业互联网奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsIndustrialInternetAward bmsIndustrialInternetAward) { - List list = bmsIndustrialInternetAwardService.selectBmsIndustrialInternetAwardList(bmsIndustrialInternetAward); - ExcelUtil util = new ExcelUtil(BmsIndustrialInternetAward.class); - util.exportExcel(response, list, "5G+工业互联网奖补数据"); - } - - /** - * 获取5G+工业互联网奖补详细信息 - */ -// @RequiresPermissions("system:industrialInternetAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsIndustrialInternetAwardService.selectBmsIndustrialInternetAwardById(id)); - } - - /** - * 新增5G+工业互联网奖补 - */ -// @RequiresPermissions("system:industrialInternetAward:add") - @Log(title = "5G+工业互联网奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsIndustrialInternetAwardAddDto bmsIndustrialInternetAwardAddDto) { - return toAjax(bmsIndustrialInternetAwardService.insertBmsIndustrialInternetAward(bmsIndustrialInternetAwardAddDto)); - } - - /** - * 修改5G+工业互联网奖补 - */ -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "5G+工业互联网奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsIndustrialInternetAwardUpdateDto bmsIndustrialInternetAwardUpdateDto) { - return toAjax(bmsIndustrialInternetAwardService.updateBmsIndustrialInternetAward(bmsIndustrialInternetAwardUpdateDto)); - } - - /** - * 修改5G+工业互联网奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改5G+工业互联网奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改5G+工业互联网奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsIndustrialInternetAward bmsIndustrialInternetAward) { - bmsIndustrialInternetAwardService.updateById(bmsIndustrialInternetAward); - JProject jp = new JProject(); - jp.setId(bmsIndustrialInternetAward.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + bmsIndustrialInternetAward.getMaterial() + '"' + - "}"); - return toAjax(jProjectService.updateById(jp)); - } - - /** - * 删除5G+工业互联网奖补 - */ -// @RequiresPermissions("system:industrialInternetAward:remove") - @Log(title = "5G+工业互联网奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsIndustrialInternetAwardService.deleteBmsIndustrialInternetAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsIntegrationIndustriesController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsIntegrationIndustriesController.java deleted file mode 100644 index 5c5b1a7..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsIntegrationIndustriesController.java +++ /dev/null @@ -1,133 +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.BmsIntegrationIndustries; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsIntegrationIndustriesAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsIntegrationIndustriesUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsIntegrationIndustriesService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 两业融合奖补Controller - * - * @author farben - * @date 2023-09-04 - */ -@Api(tags = "两业融合奖补") -@RestController -@RequestMapping("/system/integrationIndustries") -public class BmsIntegrationIndustriesController extends BaseController { - @Autowired - private IBmsIntegrationIndustriesService bmsIntegrationIndustriesService; - - @Resource - private JProjectService jProjectService; - /** - * 查询两业融合奖补列表 - */ -// @RequiresPermissions("system:integrationIndustries:list") - @GetMapping("/list") - public TableDataInfo list(BmsIntegrationIndustries bmsIntegrationIndustries) { - startPage(); - List list = bmsIntegrationIndustriesService.selectBmsIntegrationIndustriesList(bmsIntegrationIndustries); - return getDataTable(list); - } - - /** - * 导出两业融合奖补列表 - */ -// @RequiresPermissions("system:integrationIndustries:export") - @Log(title = "两业融合奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsIntegrationIndustries bmsIntegrationIndustries) { - List list = bmsIntegrationIndustriesService.selectBmsIntegrationIndustriesList(bmsIntegrationIndustries); - ExcelUtil util = new ExcelUtil(BmsIntegrationIndustries.class); - util.exportExcel(response, list, "两业融合奖补数据"); - } - - /** - * 获取两业融合奖补详细信息 - */ -// @RequiresPermissions("system:integrationIndustries:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsIntegrationIndustriesService.selectBmsIntegrationIndustriesById(id)); - } - - /** - * 新增两业融合奖补 - */ -// @RequiresPermissions("system:integrationIndustries:add") - @Log(title = "两业融合奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsIntegrationIndustriesAddDto bmsIntegrationIndustriesAddDto) { - return toAjax(bmsIntegrationIndustriesService.insertBmsIntegrationIndustries(bmsIntegrationIndustriesAddDto)); - } - - /** - * 修改两业融合奖补 - */ -// @RequiresPermissions("system:integrationIndustries:edit") - @Log(title = "两业融合奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsIntegrationIndustriesUpdateDto bmsIntegrationIndustriesUpdateDto) { - return toAjax(bmsIntegrationIndustriesService.updateBmsIntegrationIndustries(bmsIntegrationIndustriesUpdateDto)); - } - - /** - * 修改两业融合奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改两业融合奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改两业融合奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsIntegrationIndustries bmsIntegrationIndustries) { - bmsIntegrationIndustriesService.updateById(bmsIntegrationIndustries); - JProject jp = new JProject(); - jp.setId(bmsIntegrationIndustries.getJjhProjectId()); - jp.setFileJson( "{" + - '"' + "证明材料" + '"' + ":" + '"' + bmsIntegrationIndustries.getEvidence() + '"' + ","+ - '"' + "营业执照" + '"' + ":" + '"' + bmsIntegrationIndustries.getBusinessLicense() + '"' + ","+ - '"' + "完税证明" + '"' + ":" + '"' + bmsIntegrationIndustries.getTaxPaymentCertificate() + '"' + ","+ - '"' + "审计报告" + '"' + ":" + '"' + bmsIntegrationIndustries.getAuditReport() + '"' + ","+ - '"' + "股权架构图" + '"' + ":" + '"' + bmsIntegrationIndustries.getEquityStructureChart() + '"' + ","+ - '"' + "项目申报报告" + '"' + ":" + '"' + bmsIntegrationIndustries.getDeclarationReport() + '"' + ","+ - '"' + "独立核算相关证明" + '"' + ":" + '"' + bmsIntegrationIndustries.getIndependentAccounting() + '"' + ","+ - '"' + "验资报告" + '"' + ":" + '"' + bmsIntegrationIndustries.getCapitalVerificationReport()+ '"' + ","+ - '"' + "其他证明材料" + '"' + ":" + '"' + bmsIntegrationIndustries.getOtherEvidence() + '"' + - "}"); - - return toAjax(jProjectService.updateById(jp)); - } - /** - * 删除两业融合奖补 - */ -// @RequiresPermissions("system:integrationIndustries:remove") - @Log(title = "两业融合奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsIntegrationIndustriesService.deleteBmsIntegrationIndustriesByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsLogisticsDevelopmentAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsLogisticsDevelopmentAwardController.java deleted file mode 100644 index c38e360..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsLogisticsDevelopmentAwardController.java +++ /dev/null @@ -1,128 +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.BmsLogisticsDevelopmentAward; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsLogisticsDevelopmentAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsLogisticsDevelopmentAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsLogisticsDevelopmentAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 物流发展奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "物流发展奖补") -@RestController -@RequestMapping("/system/logisticsDevelopmentAward") -public class BmsLogisticsDevelopmentAwardController extends BaseController { - @Autowired - private IBmsLogisticsDevelopmentAwardService bmsLogisticsDevelopmentAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询物流发展奖补列表 - */ -// @RequiresPermissions("system:logisticsDevelopmentAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward) { - startPage(); - List list = bmsLogisticsDevelopmentAwardService.selectBmsLogisticsDevelopmentAwardList(bmsLogisticsDevelopmentAward); - return getDataTable(list); - } - - /** - * 导出物流发展奖补列表 - */ -// @RequiresPermissions("system:logisticsDevelopmentAward:export") - @Log(title = "物流发展奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward) { - List list = bmsLogisticsDevelopmentAwardService.selectBmsLogisticsDevelopmentAwardList(bmsLogisticsDevelopmentAward); - ExcelUtil util = new ExcelUtil(BmsLogisticsDevelopmentAward.class); - util.exportExcel(response, list, "物流发展奖补数据"); - } - - /** - * 获取物流发展奖补详细信息 - */ -// @RequiresPermissions("system:logisticsDevelopmentAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsLogisticsDevelopmentAwardService.selectBmsLogisticsDevelopmentAwardById(id)); - } - - /** - * 新增物流发展奖补 - */ -// @RequiresPermissions("system:logisticsDevelopmentAward:add") - @Log(title = "物流发展奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsLogisticsDevelopmentAwardAddDto bmsLogisticsDevelopmentAwardAddDto) { - return toAjax(bmsLogisticsDevelopmentAwardService.insertBmsLogisticsDevelopmentAward(bmsLogisticsDevelopmentAwardAddDto)); - } - - /** - * 修改物流发展奖补 - */ -// @RequiresPermissions("system:logisticsDevelopmentAward:edit") - @Log(title = "物流发展奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsLogisticsDevelopmentAwardUpdateDto bmsLogisticsDevelopmentAwardUpdateDto) { - return toAjax(bmsLogisticsDevelopmentAwardService.updateBmsLogisticsDevelopmentAward(bmsLogisticsDevelopmentAwardUpdateDto)); - } - - /** - * 修改物流发展奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改物流发展奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改物流发展奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward) - { - bmsLogisticsDevelopmentAwardService.updateById(bmsLogisticsDevelopmentAward); - JProject jp = new JProject(); - jp.setId(bmsLogisticsDevelopmentAward.getJjhProjectId()); - jp.setFileJson( "{" + - '"' + "荣誉证明文件" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getHonorCertificate() + '"' + ","+ - '"' + "平台名称" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getPlatformName() + '"' + ","+ - '"' + "企业投资项目备案通知书或核准批复文件" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getFilingNotice() + '"' + ","+ - '"' + "会计师事务所出具的企业财务报表审计报告" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getAuditReport() + '"' + - "}"); - return toAjax(jProjectService.updateById(jp)); - } - /** - * 删除物流发展奖补 - */ -// @RequiresPermissions("system:logisticsDevelopmentAward:remove") - @Log(title = "物流发展奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsLogisticsDevelopmentAwardService.deleteBmsLogisticsDevelopmentAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsManufacturingServicesAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsManufacturingServicesAwardController.java deleted file mode 100644 index 49e749a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsManufacturingServicesAwardController.java +++ /dev/null @@ -1,126 +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.BmsManufacturingServicesAward; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsManufacturingServicesAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsManufacturingServicesAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsManufacturingServicesAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 制造服务业有效投入奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "制造服务业有效投入奖补") -@RestController -@RequestMapping("/system/manufacturingServicesAward") -public class BmsManufacturingServicesAwardController extends BaseController { - @Autowired - private IBmsManufacturingServicesAwardService bmsManufacturingServicesAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询制造服务业有效投入奖补列表 - */ -// @RequiresPermissions("system:manufacturingServicesAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsManufacturingServicesAward bmsManufacturingServicesAward) { - startPage(); - List list = bmsManufacturingServicesAwardService.selectBmsManufacturingServicesAwardList(bmsManufacturingServicesAward); - return getDataTable(list); - } - - /** - * 导出制造服务业有效投入奖补列表 - */ -// @RequiresPermissions("system:manufacturingServicesAward:export") - @Log(title = "制造服务业有效投入奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsManufacturingServicesAward bmsManufacturingServicesAward) { - List list = bmsManufacturingServicesAwardService.selectBmsManufacturingServicesAwardList(bmsManufacturingServicesAward); - ExcelUtil util = new ExcelUtil(BmsManufacturingServicesAward.class); - util.exportExcel(response, list, "制造服务业有效投入奖补数据"); - } - - /** - * 获取制造服务业有效投入奖补详细信息 - */ -// @RequiresPermissions("system:manufacturingServicesAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsManufacturingServicesAwardService.selectBmsManufacturingServicesAwardById(id)); - } - - /** - * 新增制造服务业有效投入奖补 - */ -// @RequiresPermissions("system:manufacturingServicesAward:add") - @Log(title = "制造服务业有效投入奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsManufacturingServicesAwardAddDto bmsManufacturingServicesAwardAddDto) { - return toAjax(bmsManufacturingServicesAwardService.insertBmsManufacturingServicesAward(bmsManufacturingServicesAwardAddDto)); - } - - /** - * 修改制造服务业有效投入奖补 - */ -// @RequiresPermissions("system:manufacturingServicesAward:edit") - @Log(title = "制造服务业有效投入奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsManufacturingServicesAwardUpdateDto bmsManufacturingServicesAwardUpdateDto) { - return toAjax(bmsManufacturingServicesAwardService.updateBmsManufacturingServicesAward(bmsManufacturingServicesAwardUpdateDto)); - } - /** - * 修改制造服务业有效投入奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改制造服务业有效投入奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改制造服务业有效投入奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsManufacturingServicesAward bmsManufacturingServicesAward) { - bmsManufacturingServicesAwardService.updateById(bmsManufacturingServicesAward); - JProject jp = new JProject(); - jp.setId(bmsManufacturingServicesAward.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "企业投资项目备案通知书或核准批复文件" + '"' + ":" + '"' + bmsManufacturingServicesAward.getFilingNotice() + '"' + ","+ - '"' + "购置设备发票清单及发票扫描件" + '"' + ":" + '"' + bmsManufacturingServicesAward.getInvoice() + '"' + ","+ - '"' + "会计师事务所出具的企业申报项目购置设备情况的专项审计报告" + '"' + ":" + '"' + bmsManufacturingServicesAward.getAuditReport() + '"' + ","+ - '"' + "会计师事务所出具的企业财务报表审计报告" + '"' + ":" + '"' + bmsManufacturingServicesAward.getFinancialStatements() + '"' + ","+ - "}"); - return toAjax(jProjectService.updateById(jp)); - } - /** - * 删除制造服务业有效投入奖补 - */ -// @RequiresPermissions("system:manufacturingServicesAward:remove") - @Log(title = "制造服务业有效投入奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsManufacturingServicesAwardService.deleteBmsManufacturingServicesAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsOpenInterfaceController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsOpenInterfaceController.java deleted file mode 100644 index 2a189ff..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsOpenInterfaceController.java +++ /dev/null @@ -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); - } - - - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsOutQuitProductsController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsOutQuitProductsController.java deleted file mode 100644 index cd3a4e3..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsOutQuitProductsController.java +++ /dev/null @@ -1,123 +0,0 @@ -package com.ruoyi.jjh.declaration.controller; - -import com.ruoyi.common.annotation.Log; -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.enums.BusinessType; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.jjh.declaration.entity.BmsBigStrongAward; -import com.ruoyi.jjh.declaration.entity.BmsOutQuitProducts; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsOutQuitProductsAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsOutQuitProductsUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsBigStrongAwardService; -import com.ruoyi.jjh.declaration.service.IBmsOutQuitProductsService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.*; - -import javax.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.Arrays; -import java.util.List; - -/** - * 2024年度淘汰落后和退出低端低效产能装备清单模板Controller - * - * @author farben - * @date 2023-08-25 - */ -@RestController -@Api(tags = "2024年度淘汰落后和退出低端低效产能装备清单") -@RequestMapping("/system/outQuitProducts") -public class BmsOutQuitProductsController extends BaseController { - - @Autowired - private IBmsOutQuitProductsService bmsOutQuitProductsService; - - @Resource - private JProjectService jProjectService; - /** - * 查询2024年度淘汰落后和退出低端低效产能装备清单列表 - */ - @ApiOperation(value = "查询列表") - @GetMapping("/list") - public TableDataInfo list(BmsOutQuitProducts bmsOutQuitProducts) { - startPage(); - List list = bmsOutQuitProductsService.selectBmsOutQuitProductsList(bmsOutQuitProducts); - return getDataTable(list); - } - - /** - * 导出2024年度淘汰落后和退出低端低效产能装备清单列表 - */ - @ApiOperation(value = "导出列表") - @Log(title = "2024年度淘汰落后和退出低端低效产能装备清单", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsOutQuitProducts bmsOutQuitProducts) { - List list = bmsOutQuitProductsService.selectBmsOutQuitProductsList(bmsOutQuitProducts); - ExcelUtil util = new ExcelUtil(BmsOutQuitProducts.class); - util.exportExcel(response, list, "2024年度淘汰落后和退出低端低效产能装备清单数据"); - } - - /** - * 获取2024年度淘汰落后和退出低端低效产能装备清单详细信息 - */ - @ApiOperation(value = "根据id查询详情") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsOutQuitProductsService.getById(id)); - } - - /** - * 新增2024年度淘汰落后和退出低端低效产能装备清单详情 - */ - @ApiOperation(value = "新增") - @Log(title = "2024年度淘汰落后和退出低端低效产能装备清单", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsOutQuitProductsAddDto bmsOutQuitProductsAddDto) { - return toAjax(bmsOutQuitProductsService.insertBmsOutQuitProducts(bmsOutQuitProductsAddDto)); - } - - /** - * 修改2024年度淘汰落后和退出低端低效产能装备清单详情 - */ - @ApiOperation(value = "修改") - @Log(title = "修改2024年度淘汰落后和退出低端低效产能装备清单", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsOutQuitProductsUpdateDto bmsOutQuitProductsUpdateDto) { - return toAjax(bmsOutQuitProductsService.updateBmsOutQuitProducts(bmsOutQuitProductsUpdateDto)); - } - - /** - * 修改2024年度淘汰落后和退出低端低效产能装备清单(只做修改,不做逻辑) - */ - @ApiOperation(value = "只做修改,不做逻辑") - @Log(title = "修改2024年度淘汰落后和退出低端低效产能装备清单(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsOutQuitProducts bmsOutQuitProducts) { - bmsOutQuitProductsService.updateById(bmsOutQuitProducts); - JProject jps = new JProject(); - jps.setId(bmsOutQuitProducts.getJjhProjectId()); - jps.setFileJson("{" + - '"' + "拟淘汰或退出生产工艺装备情况" + '"' + ":" + '"' + bmsOutQuitProducts.getSpecifics() + '"' + "," + - '"' + "其他相关情况说明" + '"' + ":" + '"' + bmsOutQuitProducts.getOtherSpecifics() + '"'+ - "}"); - return toAjax(jProjectService.updateById(jps)); - } - - /** - * 删除2024年度淘汰落后和退出低端低效产能装备清单详情 - */ - @ApiOperation(value = "删除2024年度淘汰落后和退出低端低效产能装备清单") - @Log(title = "删除2024年度淘汰落后和退出低端低效产能装备清单详情", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsOutQuitProductsService.deleteBmsOutQuitProductsByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsPlatformConstructionAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsPlatformConstructionAwardController.java deleted file mode 100644 index 8b8a139..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsPlatformConstructionAwardController.java +++ /dev/null @@ -1,125 +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.BmsCarrierConstructionAward; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsPlatformConstructionAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsPlatformConstructionAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsPlatformConstructionAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 平台建设奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "平台建设奖补") -@RestController -@RequestMapping("/system/platformConstructionAward") -public class BmsPlatformConstructionAwardController extends BaseController { - @Autowired - private IBmsPlatformConstructionAwardService bmsPlatformConstructionAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询平台建设奖补列表 - */ -// @RequiresPermissions("system:platformConstructionAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsPlatformConstructionAward bmsPlatformConstructionAward) { - startPage(); - List list = bmsPlatformConstructionAwardService.selectBmsPlatformConstructionAwardList(bmsPlatformConstructionAward); - return getDataTable(list); - } - - /** - * 导出平台建设奖补列表 - */ -// @RequiresPermissions("system:platformConstructionAward:export") - @Log(title = "平台建设奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsPlatformConstructionAward bmsPlatformConstructionAward) { - List list = bmsPlatformConstructionAwardService.selectBmsPlatformConstructionAwardList(bmsPlatformConstructionAward); - ExcelUtil util = new ExcelUtil(BmsPlatformConstructionAward.class); - util.exportExcel(response, list, "平台建设奖补数据"); - } - - /** - * 获取平台建设奖补详细信息 - */ -// @RequiresPermissions("system:platformConstructionAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsPlatformConstructionAwardService.selectBmsPlatformConstructionAwardById(id)); - } - - /** - * 新增平台建设奖补 - */ -// @RequiresPermissions("system:platformConstructionAward:add") - @Log(title = "平台建设奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsPlatformConstructionAwardAddDto bmsPlatformConstructionAwardAddDto) { - return toAjax(bmsPlatformConstructionAwardService.insertBmsPlatformConstructionAward(bmsPlatformConstructionAwardAddDto)); - } - - /** - * 修改平台建设奖补 - */ -// @RequiresPermissions("system:platformConstructionAward:edit") - @Log(title = "平台建设奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsPlatformConstructionAwardUpdateDto bmsPlatformConstructionAwardUpdateDto) { - return toAjax(bmsPlatformConstructionAwardService.updateBmsPlatformConstructionAward(bmsPlatformConstructionAwardUpdateDto)); - } - - /** - * 修改平台建设奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改平台建设奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改平台建设奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsPlatformConstructionAward bmsPlatformConstructionAward) { - bmsPlatformConstructionAwardService.updateById(bmsPlatformConstructionAward); - JProject jp = new JProject(); - jp.setId(bmsPlatformConstructionAward.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "合作协议" + '"' + ":" + '"' + bmsPlatformConstructionAward.getAgreement() + '"' + - "}"); - return toAjax(jProjectService.updateById(jp)); - } - - /** - * 删除平台建设奖补 - */ -// @RequiresPermissions("system:platformConstructionAward:remove") - @Log(title = "平台建设奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsPlatformConstructionAwardService.deleteBmsPlatformConstructionAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsProjectInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsProjectInfoController.java deleted file mode 100644 index 5bb2afc..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsProjectInfoController.java +++ /dev/null @@ -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 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 list = bmsProjectInfoService.selectBmsProjectInfoList(bmsProjectInfo); - ExcelUtil util = new ExcelUtil(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)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsProjectSettlementAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsProjectSettlementAwardController.java deleted file mode 100644 index 4a5306a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsProjectSettlementAwardController.java +++ /dev/null @@ -1,129 +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.BmsIndustrialInternetAward; -import com.ruoyi.jjh.declaration.entity.BmsProjectSettlementAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsProjectSettlementAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsProjectSettlementAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsProjectSettlementAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 项目落户奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "项目落户奖补") -@RestController -@RequestMapping("/system/projectSettlementAward") -public class BmsProjectSettlementAwardController extends BaseController { - @Autowired - private IBmsProjectSettlementAwardService bmsProjectSettlementAwardService; - - @Resource - private JProjectService jProjectService; - /** - * 查询项目落户奖补列表 - */ -// @RequiresPermissions("system:projectSettlementAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsProjectSettlementAward bmsProjectSettlementAward) { - startPage(); - List list = bmsProjectSettlementAwardService.selectBmsProjectSettlementAwardList(bmsProjectSettlementAward); - return getDataTable(list); - } - - /** - * 导出项目落户奖补列表 - */ -// @RequiresPermissions("system:projectSettlementAward:export") - @Log(title = "项目落户奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsProjectSettlementAward bmsProjectSettlementAward) { - List list = bmsProjectSettlementAwardService.selectBmsProjectSettlementAwardList(bmsProjectSettlementAward); - ExcelUtil util = new ExcelUtil(BmsProjectSettlementAward.class); - util.exportExcel(response, list, "项目落户奖补数据"); - } - - /** - * 获取项目落户奖补详细信息 - */ -// @RequiresPermissions("system:projectSettlementAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsProjectSettlementAwardService.selectBmsProjectSettlementAwardById(id)); - } - - /** - * 新增项目落户奖补 - */ -// @RequiresPermissions("system:projectSettlementAward:add") - @Log(title = "项目落户奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsProjectSettlementAwardAddDto bmsProjectSettlementAwardAddDto) { - return toAjax(bmsProjectSettlementAwardService.insertBmsProjectSettlementAward(bmsProjectSettlementAwardAddDto)); - } - - /** - * 修改项目落户奖补 - */ -// @RequiresPermissions("system:projectSettlementAward:edit") - @Log(title = "项目落户奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsProjectSettlementAwardUpdateDto bmsProjectSettlementAwardUpdateDto) { - return toAjax(bmsProjectSettlementAwardService.updateBmsProjectSettlementAward(bmsProjectSettlementAwardUpdateDto)); - } - - /** - * 修改项目落户奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改项目落户奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改项目落户奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsProjectSettlementAward bmsProjectSettlementAward) { - bmsProjectSettlementAwardService.updateById(bmsProjectSettlementAward); - String str1 = "{" + - '"' + "招商协议" + '"' + ":" + '"' + bmsProjectSettlementAward.getAgreement() + '"' + "," + - '"' + "验资报告" + '"' + ":" + '"' + bmsProjectSettlementAward.getBusinessLicense() + '"' + "," + - '"' + "营业执照" + '"' + ":" + '"' + bmsProjectSettlementAward.getOtherMaterials() + '"' + "," + - '"' + "其他证明材料" + '"' + ":" + '"' + bmsProjectSettlementAward.getReport() + '"' + - "}"; - JProject jps = new JProject(); - jps.setId(bmsProjectSettlementAward.getJjhProjectId()); - jps.setFileJson(str1); - return toAjax(jProjectService.updateById(jps)); - } - - /** - * 删除项目落户奖补 - */ -// @RequiresPermissions("system:projectSettlementAward:remove") - @Log(title = "项目落户奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsProjectSettlementAwardService.deleteBmsProjectSettlementAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsSceneOpeningAwardController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsSceneOpeningAwardController.java deleted file mode 100644 index 3569629..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BmsSceneOpeningAwardController.java +++ /dev/null @@ -1,126 +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.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.BmsSceneOpeningAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsSceneOpeningAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsSceneOpeningAwardUpdateDto; -import com.ruoyi.jjh.declaration.service.IBmsSceneOpeningAwardService; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -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.annotation.Resource; -import javax.servlet.http.HttpServletResponse; -import java.util.List; - -/** - * 场景开放奖补Controller - * - * @author farben - * @date 2023-08-25 - */ -@Api(tags = "场景开放奖补") -@RestController -@RequestMapping("/system/sceneOpeningAward") -public class BmsSceneOpeningAwardController extends BaseController { - @Autowired - private IBmsSceneOpeningAwardService bmsSceneOpeningAwardService; - - - @Resource - private JProjectService jProjectService; - /** - * 查询场景开放奖补列表 - */ -// @RequiresPermissions("system:sceneOpeningAward:list") - @GetMapping("/list") - public TableDataInfo list(BmsSceneOpeningAward bmsSceneOpeningAward) { - startPage(); - List list = bmsSceneOpeningAwardService.selectBmsSceneOpeningAwardList(bmsSceneOpeningAward); - return getDataTable(list); - } - - /** - * 导出场景开放奖补列表 - */ -// @RequiresPermissions("system:sceneOpeningAward:export") - @Log(title = "场景开放奖补", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, BmsSceneOpeningAward bmsSceneOpeningAward) { - List list = bmsSceneOpeningAwardService.selectBmsSceneOpeningAwardList(bmsSceneOpeningAward); - ExcelUtil util = new ExcelUtil(BmsSceneOpeningAward.class); - util.exportExcel(response, list, "场景开放奖补数据"); - } - - /** - * 获取场景开放奖补详细信息 - */ -// @RequiresPermissions("system:sceneOpeningAward:query") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) { - return success(bmsSceneOpeningAwardService.selectBmsSceneOpeningAwardById(id)); - } - - /** - * 新增场景开放奖补 - */ -// @RequiresPermissions("system:sceneOpeningAward:add") - @Log(title = "场景开放奖补", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody BmsSceneOpeningAwardAddDto bmsSceneOpeningAwardAddDto) { - return toAjax(bmsSceneOpeningAwardService.insertBmsSceneOpeningAward(bmsSceneOpeningAwardAddDto)); - } - - /** - * 修改场景开放奖补 - */ -// @RequiresPermissions("system:sceneOpeningAward:edit") - @Log(title = "场景开放奖补", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - public AjaxResult edit(@RequestBody BmsSceneOpeningAwardUpdateDto bmsSceneOpeningAwardUpdateDto) { - return toAjax(bmsSceneOpeningAwardService.updateBmsSceneOpeningAward(bmsSceneOpeningAwardUpdateDto)); - } - - /** - * 修改场景开放奖补(只做修改,不做逻辑) - */ - @ApiOperation(value = "修改场景开放奖补(只做修改,不做逻辑)") -// @RequiresPermissions("system:industrialInternetAward:edit") - @Log(title = "修改场景开放奖补(只做修改,不做逻辑)", businessType = BusinessType.UPDATE) - @PostMapping("/update") - public AjaxResult update(@RequestBody BmsSceneOpeningAward bmsSceneOpeningAward) { - bmsSceneOpeningAwardService.updateById(bmsSceneOpeningAward); - JProject jp = new JProject(); - jp.setId(bmsSceneOpeningAward.getJjhProjectId()); - jp.setFileJson("{" + - '"' + "证明材料(公示、发文证明、专家评分表)" + '"' + ":" + '"' + bmsSceneOpeningAward.getMaterial() + '"' + - "}"); - return toAjax(jProjectService.updateById(jp)); - } - - /** - * 删除场景开放奖补 - */ -// @RequiresPermissions("system:sceneOpeningAward:remove") - @Log(title = "场景开放奖补", businessType = BusinessType.DELETE) - @PostMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) { - return toAjax(bmsSceneOpeningAwardService.deleteBmsSceneOpeningAwardByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BsmFundingInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BsmFundingInfoController.java deleted file mode 100644 index 8bef0da..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/controller/BsmFundingInfoController.java +++ /dev/null @@ -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 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 list = bsmFundingInfoService.selectBsmFundingInfoList(bsmFundingInfo); - ExcelUtil util = new ExcelUtil(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)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsBigStrongAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsBigStrongAward.java deleted file mode 100644 index 7d5414a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsBigStrongAward.java +++ /dev/null @@ -1,95 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.fasterxml.jackson.annotation.JsonFormat; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -import java.util.Date; - -/** - * 做大做强奖详情对象 bms_big_strong_award - * - * @author farben - * @date 2023-08-25 - */ -@ApiModel("做大做强奖详情对象") -@Data -public class BmsBigStrongAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - @JSONField(serialize = false) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @Excel(name = "企业id") - @JSONField(serialize = false) - private Long enterpriseId; - - /** - * 是否获得园区其他经营奖励 - */ - @ApiModelProperty("是否获得园区其他经营奖励,0:是,1:否") - @Excel(name = "是否获得园区其他经营奖励", readConverterExp = "0=是,1=否") - @JSONField(name = "是否获得园区其他经营奖励") - private int isGainRewards; - - /** - * 园区其他经营奖励 - */ - @ApiModelProperty("园区其他经营奖励") - @JSONField(serialize = false) - @Excel(name = "园区其他经营奖励",readConverterExp = "0=是,1=否") - private String rewardDescription; - - /** - * 园区其他经营奖励 - */ - @TableField(exist=false) - @JSONField(name = "园区其他经营奖励") - private String newRewardDescription; - - /** - * 成立时间 - */ - @ApiModelProperty("成立时间 yyyy-MM-dd") - @JSONField(name = "申报成立时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "成立时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date establishTime; - - /** - * 企业近3年发展情况及未来发展计划 - */ - @ApiModelProperty("企业近3年发展情况及未来发展计划") - @JSONField(serialize = false) - @Excel(name = "企业近3年发展情况及未来发展计划") - private String developmentPlan; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsBrandingAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsBrandingAward.java deleted file mode 100644 index 609b702..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsBrandingAward.java +++ /dev/null @@ -1,76 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 品牌打造奖补对象 bms_branding_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@ApiModel("品牌打造奖补对象") -public class BmsBrandingAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 所获荣誉/所举办活动 - */ - @ApiModelProperty("所获荣誉/所举办活动") - @JSONField(name="所获荣誉/所举办活动") - @Excel(name = "所获荣誉/所举办活动") - private String honorsReceived; - - /** - * 所属等级 - */ - @ApiModelProperty("所属等级") - @JSONField(name="所属等级") - @Excel(name = "所属等级") - private Long level; - - /** - * 证明材料 - */ - @ApiModelProperty("证明材料") - @JSONField(serialize = false) - @Excel(name = "证明材料") - private String evidence; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsCarrierConstructionAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsCarrierConstructionAward.java deleted file mode 100644 index eb3ce51..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsCarrierConstructionAward.java +++ /dev/null @@ -1,88 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 载体建设奖补对象 bms_carrier_construction_award - * - * @author farben - * @date 2023-08-25 - */ -@ApiModel("载体建设奖补对象") -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsCarrierConstructionAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** 主键id */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** 企业id */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** 项目名称 */ - @ApiModelProperty("项目名称") - @JSONField(name = "项目名称") - @Excel(name = "项目名称") - private String projectName; - - /** 文体企业数量占比 */ - @ApiModelProperty("文体企业数量占比") - @JSONField(name = "文体企业数量占比") - @Excel(name = "文体企业数量占比") - private String quantityProportion; - - /** 文体企业营收占比 */ - @ApiModelProperty("文体企业营收占比") - @JSONField(name = "文体企业营收占比") - @Excel(name = "文体企业营收占比") - private String revenueProportion; - - /** 文体企业从业人员占比 */ - @ApiModelProperty("文体企业从业人员占比") - @JSONField(name = "文体企业从业人员占比") - @Excel(name = "文体企业从业人员占比") - private String personnelProportion; - - /** 相关佐证材料 */ - @ApiModelProperty("相关佐证材料") - @JSONField(serialize = false) - @Excel(name = "相关佐证材料") - private String supportingMaterials; - - /** 项目工商登记许可 */ - @ApiModelProperty("项目工商登记许可") - @JSONField(serialize = false) - @Excel(name = "项目工商登记许可") - private String businessLicense; - - /** 消防验收报告 */ - @ApiModelProperty("消防验收报告") - @JSONField(serialize = false) - @Excel(name = "消防验收报告") - private String fireReport; - - /** 是否删除:0,未删除;1,已删除 */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsCreditManagement.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsCreditManagement.java deleted file mode 100644 index 7a700c9..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsCreditManagement.java +++ /dev/null @@ -1,59 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 信用管理奖补对象 bms_credit_management - * - * @author farben - * @date 2023-09-04 - */ -@Data -@ApiModel("信用管理奖补对象") -public class BmsCreditManagement extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** 主键id */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** 企业id */ - @ApiModelProperty("企业id") - @Excel(name = "企业id") - private Long enterpriseId; - - /** 项目方案(包括项目基本情况介绍、项目投资情况以及实施进展、项目目标及取得的主要成效) */ - @ApiModelProperty("项目方案(包括项目基本情况介绍、项目投资情况以及实施进展、项目目标及取得的主要成效)") - @Excel(name = "项目方案", readConverterExp = "包=括项目基本情况介绍、项目投资情况以及实施进展、项目目标及取得的主要成效") - private String projectPlan; - - /** 资金使用说明(项目未完成的需提供,内容主要包括项目计划投资额,投资明细,目前已完成投资情况和后续投入计划等) */ - @ApiModelProperty("资金使用说明(项目未完成的需提供,内容主要包括项目计划投资额,投资明细,目前已完成投资情况和后续投入计划等)") - @Excel(name = "资金使用说明", readConverterExp = "项=目未完成的需提供,内容主要包括项目计划投资额,投资明细,目前已完成投资情况和后续投入计划等") - private String usesFunds; - - /** 项目专项审计报告(项目已完成的需提供) */ - @ApiModelProperty("项目专项审计报告(项目已完成的需提供)") - @Excel(name = "项目专项审计报告", readConverterExp = "项=目已完成的需提供") - private String auditReport; - - /** 是否删除:0,未删除;1,已删除 */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFieldInfo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFieldInfo.java deleted file mode 100644 index 9fddff6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFieldInfo.java +++ /dev/null @@ -1,93 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 模板字段填写详情对象 bms_field_info - * - * @author farben - * @date 2023-09-04 - */ -public class BmsFieldInfo extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 详情id - */ - @Excel(name = "详情id") - private Long detailId; - - /** - * 文件名称 - */ - @Excel(name = "文件名称") - private String fieldName; - - /** - * 文件说明 - */ - @Excel(name = "文件说明") - private String fieldResult; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getDetailId() { - return detailId; - } - - public void setDetailId(Long detailId) { - this.detailId = detailId; - } - - public String getFieldName() { - return fieldName; - } - - public void setFieldName(String fieldName) { - this.fieldName = fieldName; - } - - public String getFieldResult() { - return fieldResult; - } - - public void setFieldResult(String fieldResult) { - this.fieldResult = fieldResult; - } - - public Long getIsDeleted() { - return isDeleted; - } - - public void setIsDeleted(Long isDeleted) { - this.isDeleted = isDeleted; - } - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("detailId", getDetailId()).append("fieldName", getFieldName()).append("fieldResult", getFieldResult()).append("isDeleted", getIsDeleted()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("remark", getRemark()).toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFileInfo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFileInfo.java deleted file mode 100644 index e917232..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFileInfo.java +++ /dev/null @@ -1,107 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 文件存储说明详情对象 bms_file_info - * - * @author farben - * @date 2023-09-04 - */ -public class BmsFileInfo extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 详情id - */ - @Excel(name = "详情id") - private Long detailId; - - /** - * 文件名称 - */ - @Excel(name = "文件名称") - private String fileName; - - /** - * 文件说明 - */ - @Excel(name = "文件说明") - private String fileDescription; - - /** - * 文件地址 - */ - @Excel(name = "文件地址") - private String fileUrl; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getDetailId() { - return detailId; - } - - public void setDetailId(Long detailId) { - this.detailId = detailId; - } - - public String getFileName() { - return fileName; - } - - public void setFileName(String fileName) { - this.fileName = fileName; - } - - public String getFileDescription() { - return fileDescription; - } - - public void setFileDescription(String fileDescription) { - this.fileDescription = fileDescription; - } - - public String getFileUrl() { - return fileUrl; - } - - public void setFileUrl(String fileUrl) { - this.fileUrl = fileUrl; - } - - public Long getIsDeleted() { - return isDeleted; - } - - public void setIsDeleted(Long isDeleted) { - this.isDeleted = isDeleted; - } - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("detailId", getDetailId()).append("fileName", getFileName()).append("fileDescription", getFileDescription()).append("fileUrl", getFileUrl()).append("isDeleted", getIsDeleted()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("remark", getRemark()).toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFundingDetail.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFundingDetail.java deleted file mode 100644 index e8f43b3..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsFundingDetail.java +++ /dev/null @@ -1,72 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 资金信息详情对象 bms_funding_detail - * - * @author farben - * @date 2023-09-04 - */ -@Data -@TableName(value = "bms_funding_detail") -public class BmsFundingDetail extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 模板类型:1:项目落户奖补,2:做大做强奖补 - */ - @Excel(name = "模板类型:1:项目落户奖补,2:做大做强奖补") - private Integer type; - - /** - * 对应模板id - */ - @Excel(name = "对应模板id") - private int templateRecordId; - - /** - * 详情id - */ - @Excel(name = "详情id") - private Long detailId; - - private String vModel; - - /** - * 年份 - */ - @Excel(name = "年份") - private String year; - - /** - * 说明 - */ - @Excel(name = "说明") - private String illustrate; - - /** - * 金额 - */ - @Excel(name = "金额") - private Long amount; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsIndustrialInternetAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsIndustrialInternetAward.java deleted file mode 100644 index eb69fce..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsIndustrialInternetAward.java +++ /dev/null @@ -1,70 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 5G+工业互联网奖补对象 bms_industrial_internet_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@ApiModel("5G+工业互联网奖补对象") -public class BmsIndustrialInternetAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; - /** - * 主键id - */ - @ApiModelProperty("id") - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 荣誉名称 - */ - @ApiModelProperty("荣誉名称") - @JSONField(name = "荣誉名称") - @Excel(name = "荣誉名称") - private String honoraryName; - - /** - * 证明材料 - */ - @ApiModelProperty("证明材料") - @JSONField(serialize = false) - @Excel(name = "证明材料") - private String material; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsIntegrationIndustries.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsIntegrationIndustries.java deleted file mode 100644 index 61024ff..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsIntegrationIndustries.java +++ /dev/null @@ -1,133 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 两业融合奖补对象 bms_integration_industries - * - * @author farben - * @date 2023-09-04 - */ -@ApiModel("两业融合奖补对象") -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsIntegrationIndustries extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - @ApiModelProperty("申报类型") - @JSONField(serialize = false) - @Excel(name = "申报类型", readConverterExp = "1=两业融合示范企业,2=制造业企业设立财务独立核算的制造服务业职能部门,3=制造业企业剥离服务业务成立独立的法人") - private Integer declarationType; - - @JSONField(name = "申报类型") - @TableField(exist=false) - private String newDeclarationType; - - /** - * 证明材料 - */ - @ApiModelProperty("证明材料") - @JSONField(serialize = false) - @Excel(name = "证明材料") - private String evidence; - - /** - * 营业执照 - */ - @ApiModelProperty("营业执照") - @JSONField(serialize = false) - @Excel(name = "营业执照") - private String businessLicense; - - /** - * 完税证明 - */ - @ApiModelProperty("完税证明") - @JSONField(serialize = false) - @Excel(name = "完税证明") - private String taxPaymentCertificate; - - /** - * 审计报告 - */ - @ApiModelProperty("审计报告") - @JSONField(serialize = false) - @Excel(name = "审计报告") - private String auditReport; - - /** - * 股权架构图 - */ - @ApiModelProperty("股权架构图") - @JSONField(serialize = false) - @Excel(name = "股权架构图") - private String equityStructureChart; - - /** - * 项目申报报告(含企业基本情况和项目基本情况) - */ - @ApiModelProperty("项目申报报告(含企业基本情况和项目基本情况)") - @JSONField(serialize = false) - @Excel(name = "项目申报报告", readConverterExp = "含=企业基本情况和项目基本情况") - private String declarationReport; - - /** - * 独立核算相关证明 - */ - @ApiModelProperty("独立核算相关证明") - @JSONField(serialize = false) - @Excel(name = "独立核算相关证明") - private String independentAccounting; - - /** - * 验资报告 - */ - @ApiModelProperty("验资报告") - @JSONField(serialize = false) - @Excel(name = "验资报告") - private String capitalVerificationReport; - - /** - * 证明材料 - */ - @ApiModelProperty("证明材料") - @JSONField(serialize = false) - @Excel(name = "证明材料") - private String otherEvidence; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsLogisticsDevelopmentAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsLogisticsDevelopmentAward.java deleted file mode 100644 index 905875c..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsLogisticsDevelopmentAward.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 物流发展奖补对象 bms_logistics_development_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@ApiModel("物流发展奖补对象") -public class BmsLogisticsDevelopmentAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 荣誉证明文件 - */ - @ApiModelProperty("荣誉证明文件") - @Excel(name = "荣誉证明文件") - private String honorCertificate; - - /** - * 平台名称 - */ - @ApiModelProperty("平台名称") - @Excel(name = "平台名称") - private String platformName; - - /** - * 企业投资项目备案通知书或核准批复文件 - */ - @ApiModelProperty("企业投资项目备案通知书或核准批复文件") - @Excel(name = "企业投资项目备案通知书或核准批复文件") - private String filingNotice; - - /** - * 会计师事务所出具的企业财务报表审计报告 - */ - @ApiModelProperty("会计师事务所出具的企业财务报表审计报告") - @Excel(name = "会计师事务所出具的企业财务报表审计报告") - private String auditReport; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsManufacturingServicesAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsManufacturingServicesAward.java deleted file mode 100644 index feb3bdc..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsManufacturingServicesAward.java +++ /dev/null @@ -1,85 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 制造服务业有效投入奖补对象 bms_manufacturing_services_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@ApiModel("制造服务业有效投入奖补对象") -public class BmsManufacturingServicesAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; - /** - * 主键id - */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 企业投资项目备案通知书或核准批复文件 - */ - @ApiModelProperty("企业投资项目备案通知书或核准批复文件") - @JSONField(serialize = false) - @Excel(name = "企业投资项目备案通知书或核准批复文件") - private String filingNotice; - - /** - * 购置设备发票清单及发票扫描件 - */ - @ApiModelProperty("购置设备发票清单及发票扫描件") - @JSONField(serialize = false) - @Excel(name = "购置设备发票清单及发票扫描件") - private String invoice; - - /** - * 会计师事务所出具的企业申报项目购置设备情况的专项审计报告 - */ - @ApiModelProperty("会计师事务所出具的企业申报项目购置设备情况的专项审计报告") - @JSONField(serialize = false) - @Excel(name = "会计师事务所出具的企业申报项目购置设备情况的专项审计报告") - private String auditReport; - - /** - * 会计师事务所出具的企业财务报表审计报告 - */ - @ApiModelProperty("会计师事务所出具的企业财务报表审计报告") - @JSONField(serialize = false) - @Excel(name = "会计师事务所出具的企业财务报表审计报告") - private String financialStatements; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsOutQuitProducts.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsOutQuitProducts.java deleted file mode 100644 index 066eb02..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsOutQuitProducts.java +++ /dev/null @@ -1,123 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * 2024年度淘汰落后和退出低端低效产能装备清单 bms_out_quit_products - * - * @author farben - * @date 2023-08-25 - */ -@ApiModel("2024年度淘汰落后和退出低端低效产能装备清单详情对象") -@Data -public class BmsOutQuitProducts extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - @JSONField(serialize = false) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @Excel(name = "企业id") - @JSONField(serialize = false) - private Long enterpriseId; - - /** - * 主要产品 - */ - @ApiModelProperty("主要产品") - @Excel(name = "主要产品") - @JSONField(name = "主要产品") - private String mainProducts; - - /** - * 所属行业 1轻工 2纺织 3冶金 4化工 5建材 6机械加工 - */ - @ApiModelProperty("所属行业 1轻工 2纺织 3冶金 4化工 5建材 6机械加工") - @JSONField(serialize = false) - @Excel(name = "所属行业",readConverterExp = "1=轻工,2=纺织,3=冶金,4=化工,5=建材,6=机械加工") - private Integer industry; - - /** - * 所属行业 1轻工 2纺织 3冶金 4化工 5建材 6机械加工 - */ - @TableField(exist=false) - @JSONField(name = "所属行业") - private String newIndustry; - - /** - * 工作联系人 - */ - @ApiModelProperty("工作联系人") - @Excel(name = "工作联系人") - @JSONField(name = "工作联系人") - private String workContact; - - - /** - * 联系电话 - */ - @ApiModelProperty("联系电话") - @Excel(name = "联系电话") - @JSONField(name = "联系电话") - private String iphone; - - /** - * 类别 1 淘汰落后生产工艺装备 2 退出低端低效生产工艺装备 - */ - @ApiModelProperty("类别 1 淘汰落后生产工艺装备 2 退出低端低效生产工艺装备") - @Excel(name = "类别",readConverterExp = "1=淘汰落后生产工艺装备,2=退出低端低效生产工艺装备") - @JSONField(serialize = false) - private Integer type; - - /** - * 类别 1 淘汰落后生产工艺装备 2 退出低端低效生产工艺装备 - */ - @JSONField(name = "类别") - @TableField(exist=false) - private String newType; - - /** - * 拟淘汰或退出生产工艺装备情况(和类别对应) - */ - @ApiModelProperty("拟淘汰或退出生产工艺装备情况(和类别对应)") - @Excel(name = "拟淘汰或退出生产工艺装备情况") - @JSONField(serialize = false) - private String specifics; - - /** - * 其他相关情况说明 - */ - @ApiModelProperty("其他相关情况说明") - @Excel(name = "其他相关情况说明") - @JSONField(serialize = false) - private String otherSpecifics; - - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsPlatformConstructionAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsPlatformConstructionAward.java deleted file mode 100644 index c092eeb..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsPlatformConstructionAward.java +++ /dev/null @@ -1,73 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 平台建设奖补对象 bms_platform_construction_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@ApiModel("平台建设奖补对象") -public class BmsPlatformConstructionAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 平台(项目)名称 - */ - @ApiModelProperty("平台(项目)名称") - @JSONField(name = "平台(项目)名称") - @Excel(name = "平台(项目)名称") - private String platformName; - - /** - * 合作协议 - */ - @ApiModelProperty("合作协议") - @JSONField(serialize = false) - @Excel(name = "合作协议") - private String agreement; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("enterpriseId", getEnterpriseId()).append("platformName", getPlatformName()).append("agreement", getAgreement()).append("isDeleted", getIsDeleted()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("remark", getRemark()).toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsProjectInfo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsProjectInfo.java deleted file mode 100644 index e28af5f..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsProjectInfo.java +++ /dev/null @@ -1,98 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.fasterxml.jackson.annotation.JsonFormat; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import lombok.Data; -import lombok.EqualsAndHashCode; - -import java.util.Date; - -/** - * 项目基本信息对象 bms_project_info - * - * @author farben - * @date 2023-09-09 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsProjectInfo extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - @Excel(name = "申报模版类型") - private Integer declarationTemplateType; - - /** - * 项目名称 - */ - @Excel(name = "项目名称") - private String projectName; - - /** - * 申报单位,企业id - */ - @Excel(name = "申报单位,企业id") - private Long enterpriseId; - - /** - * 产品领域(0=科技领域,1=信息技术服务,2=知识产权服务,3=检验检测服务,4=文化创意,5=科技服务,6=两业融合发展【科技服务】,7=两业融合发展【全产业链工业设计) - */ - @Excel(name = "产品领域(0=科技领域,1=信息技术服务,2=知识产权服务,3=检验检测服务,4=文化创意,5=科技服务,6=两业融合发展【科技服务】,7=两业融合发展【全产业链工业设计)") - private Long productArea; - - /** - * 年份 - */ - @Excel(name = "年份") - private String year; - - /** - * 项目开始时间 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "项目开始时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date startTime; - - /** - * 项目结束时间 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "项目结束时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date endTime; - - /** - * 申报竣工时间 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "申报竣工时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date completionTime; - - /** - * 扶持方式(0=投资补助) - */ - @Excel(name = "扶持方式(0=投资补助)") - private Long supportMethods; - - /** - * 申报时间 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "申报时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date declarationTime; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsProjectSettlementAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsProjectSettlementAward.java deleted file mode 100644 index 56271a6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsProjectSettlementAward.java +++ /dev/null @@ -1,112 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.fasterxml.jackson.annotation.JsonFormat; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -import java.util.Date; - -/** - * 项目落户奖补对象 bms_project_settlement_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -@ApiModel("项目落户奖补对象") -public class BmsProjectSettlementAward extends BaseInfoEntity { - - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 申报单位成立时间 - */ - @ApiModelProperty("申报单位成立时间") - @JSONField(name= "申报单位成立时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "申报单位成立时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date establishTime; - - /** - * 截至目前员工人数 - */ - @ApiModelProperty("截至目前员工人数") - @JSONField(name= "截至目前员工人数") - @Excel(name = "截至目前员工人数") - private Long employeeNum; - - /** - * 招商协议 - */ - @ApiModelProperty("招商协议") - @JSONField(serialize = false) - @Excel(name = "招商协议") - private String agreement; - - /** - * 验资报告 - */ - @ApiModelProperty("验资报告") - @JSONField(serialize = false) - @Excel(name = "验资报告") - private String report; - - /** - * 营业执照 - */ - @ApiModelProperty("营业执照") - @JSONField(serialize = false) - @Excel(name = "营业执照") - private String businessLicense; - - /** - * 其他材料 - */ - @ApiModelProperty("其他材料") - @JSONField(serialize = false) - @Excel(name = "其他材料") - private String otherMaterials; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("enterpriseId", getEnterpriseId()).append("establishTime", getEstablishTime()).append("employeeNum", getEmployeeNum()).append("agreement", getAgreement()).append("report", getReport()).append("businessLicense", getBusinessLicense()).append("otherMaterials", getOtherMaterials()).append("isDeleted", getIsDeleted()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsSceneOpeningAward.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsSceneOpeningAward.java deleted file mode 100644 index 7414d1d..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BmsSceneOpeningAward.java +++ /dev/null @@ -1,90 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.alibaba.fastjson2.annotation.JSONField; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 场景开放奖补对象 bms_scene_opening_award - * - * @author farben - * @date 2023-08-25 - */ -@ApiModel("场景开放奖补对象") -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsSceneOpeningAward extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @JSONField(serialize = false) - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 企业id - */ - @ApiModelProperty("企业id") - @JSONField(serialize = false) - @Excel(name = "企业id") - private Long enterpriseId; - - /** - * 项目名称 - */ - @ApiModelProperty("项目名称") - @JSONField(name = "项目名称") - @Excel(name = "项目名称") - private String projectName; - - /** - * 所属类型 - */ - @ApiModelProperty("所属类型") - @JSONField(serialize=false) - @Excel(name = "所属类型",readConverterExp = "0=市场服务类,1=公共服务类") - private Long type; - - /** - * 所属类型 - */ - @JSONField(name = "所属类型") - @TableField(exist=false) - private String newType; - - /** - * 公示、发文证明、专家评分表 - */ - @ApiModelProperty("公示、发文证明、专家评分表") - @JSONField(serialize = false) - @Excel(name = "公示、发文证明、专家评分表") - private String material; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @ApiModelProperty("是否删除:0,未删除;1,已删除") - @JSONField(serialize = false) - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @TableField(exist=false) - @ApiModelProperty(value = "项目库Id") - private Long jjhProjectId;; - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("enterpriseId", getEnterpriseId()).append("projectName", getProjectName()).append("type", getType()).append("material", getMaterial()).append("isDeleted", getIsDeleted()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("remark", getRemark()).toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BsmFundingInfo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BsmFundingInfo.java deleted file mode 100644 index e8cd9c2..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/BsmFundingInfo.java +++ /dev/null @@ -1,110 +0,0 @@ -package com.ruoyi.jjh.declaration.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.fasterxml.jackson.annotation.JsonFormat; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.common.entity.BaseInfoEntity; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -import java.util.Date; - -/** - * 资金信息对象 bsm_funding_info - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BsmFundingInfo extends BaseInfoEntity { - private static final long serialVersionUID = 1L; - - /** - * 主键id - */ - @TableId(value = "id", type = IdType.AUTO) - private Long id; - - /** - * 模板类型:1:项目落户奖补,2:做大做强奖补 - */ - @Excel(name = "模板类型:1:项目落户奖补,2:做大做强奖补") - private Integer type; - - /** - * 对应模板id - */ - @Excel(name = "对应模板id") - private Long templateId; - - @ApiModelProperty(value = "详情id") - private Long detailId; - - /** - * 营收年份 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "营收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date revenueYear; - - /** - * 营收 - */ - @Excel(name = "营收") - private Long revenue; - - /** - * 税收年份 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "税收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date taxationYear; - - /** - * 税收 - */ - @Excel(name = "税收") - private Long taxation; - - /** - * 预计营收年份 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "预计营收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date expectedRevenueYear; - - /** - * 预计营收 - */ - @Excel(name = "预计营收") - private Long expectedRevenue; - - /** - * 预计税收年份 - */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "预计税收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date expectedTaxationYear; - - /** - * 预计税收 - */ - @Excel(name = "预计税收") - private Long expectedTaxation; - - /** - * 是否删除:0,未删除;1,已删除 - */ - @Excel(name = "是否删除:0,未删除;1,已删除") - private Long isDeleted; - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("type", getType()).append("templateId", getTemplateId()).append("revenueYear", getRevenueYear()).append("revenue", getRevenue()).append("taxationYear", getTaxationYear()).append("taxation", getTaxation()).append("expectedRevenueYear", getExpectedRevenueYear()).append("expectedRevenue", getExpectedRevenue()).append("expectedTaxationYear", getExpectedTaxationYear()).append("expectedTaxation", getExpectedTaxation()).append("isDeleted", getIsDeleted()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("remark", getRemark()).toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/AppendixParamDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/AppendixParamDto.java deleted file mode 100644 index 7817e63..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/AppendixParamDto.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import lombok.Data; - -/** - *

- * 附件参数dto - *

- * - * @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; -} \ No newline at end of file diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBigStrongAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBigStrongAwardAddDto.java deleted file mode 100644 index 11cde71..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBigStrongAwardAddDto.java +++ /dev/null @@ -1,46 +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_big_strong_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsBigStrongAwardAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable { - - private static final long serialVersionUID = 1L; - - /** 成立时间 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "成立时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date establishTime; - - /** 是否获得园区其他经营奖励 */ - @Excel(name = "是否获得园区其他经营奖励,0:是,1:否",readConverterExp = "0=是,1=否") - private int isGainRewards; - - @Excel(name = "奖励说明") - private String rewardDescription; - - @ApiModelProperty(value = "应收列表") - private List fundingDetailList; - - /** 企业近3年发展情况及未来发展计划 */ - @Excel(name = "企业近3年发展情况及未来发展计划") - private String developmentPlan; - - @ApiModelProperty(value = "在线申报记录id") - private Long declarationId; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBigStrongAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBigStrongAwardUpdateDto.java deleted file mode 100644 index 1c4b70a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBigStrongAwardUpdateDto.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -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.io.Serializable; -import java.util.List; - -/** - * 做大做强奖详情对象 bms_big_strong_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsBigStrongAwardUpdateDto extends BmsBigStrongAward implements Serializable { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "应收列表") - private List fundingDetailList; - - @ApiModelProperty(value = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBrandingAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBrandingAwardAddDto.java deleted file mode 100644 index fbfe88b..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBrandingAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBrandingAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBrandingAwardUpdateDto.java deleted file mode 100644 index c5d1e3f..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsBrandingAwardUpdateDto.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.jjh.declaration.entity.BmsBrandingAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 品牌打造奖补对象 bms_branding_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsBrandingAwardUpdateDto extends BmsBrandingAward { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCarrierConstructionAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCarrierConstructionAwardAddDto.java deleted file mode 100644 index 2c9fd09..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCarrierConstructionAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCarrierConstructionAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCarrierConstructionAwardUpdateDto.java deleted file mode 100644 index b917646..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCarrierConstructionAwardUpdateDto.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.declaration.entity.BmsCarrierConstructionAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 载体建设奖补对象 bms_carrier_construction_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsCarrierConstructionAwardUpdateDto extends BmsCarrierConstructionAward { - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @Excel(name = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCreditManagementAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCreditManagementAddDto.java deleted file mode 100644 index 16fbd47..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCreditManagementAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCreditManagementUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCreditManagementUpdateDto.java deleted file mode 100644 index 171722d..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsCreditManagementUpdateDto.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.declaration.entity.BmsCreditManagement; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 信用管理奖补对象 bms_credit_management - * - * @author farben - * @date 2023-09-04 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsCreditManagementUpdateDto extends BmsCreditManagement { - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @Excel(name = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsDeclarationRecordsAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsDeclarationRecordsAddDto.java index 257204b..b2d691f 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsDeclarationRecordsAddDto.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsDeclarationRecordsAddDto.java @@ -50,11 +50,5 @@ public class BmsDeclarationRecordsAddDto implements Serializable { @ApiModelProperty(value = "详情id:对应详情id") private Long detailId; - @ApiModelProperty(value = "添加的字段") - private List fieldList; - - @ApiModelProperty(value = "上传的文件") - private List fileList; - } diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFieldInfoAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFieldInfoAddDto.java deleted file mode 100644 index ba98cc5..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFieldInfoAddDto.java +++ /dev/null @@ -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; - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFileInfoAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFileInfoAddDto.java deleted file mode 100644 index a9e4172..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFileInfoAddDto.java +++ /dev/null @@ -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; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFundingDetailAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFundingDetailAddDto.java deleted file mode 100644 index 7df075f..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFundingDetailAddDto.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import lombok.Data; - -import java.io.Serializable; - -/** - * 资金信息详情对象 bms_funding_detail - * - * @author farben - * @date 2023-09-04 - */ -@Data -public class BmsFundingDetailAddDto implements Serializable { - - private static final long serialVersionUID = 1L; - - /** 模板类型:1:项目落户奖补,2:做大做强奖补 */ - @Excel(name = "模板类型:1:项目落户奖补,2:做大做强奖补") - private Integer type; - - /** 对应模板id */ - @Excel(name = "对应模板id") - private Long templateRecordId; - - /** 详情id */ - @Excel(name = "详情id") - private Long detailId; - - private String vModel; - - /** 年份 */ - @Excel(name = "年份") - private String year; - - /** 说明 */ - @Excel(name = "说明") - private String illustrate; - - /** 金额 */ - @Excel(name = "金额") - private Long amount; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFundingDetailUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFundingDetailUpdateDto.java deleted file mode 100644 index 7f599fe..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsFundingDetailUpdateDto.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import java.io.Serializable; - -/** - * 资金信息详情对象 bms_funding_detail - * - * @author farben - * @date 2023-09-04 - */ -@Data -public class BmsFundingDetailUpdateDto implements Serializable { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "资金信息详情id") - private Long id; - - /** 模板类型:1:项目落户奖补,2:做大做强奖补 */ - @Excel(name = "模板类型:1:项目落户奖补,2:做大做强奖补") - private Integer type; - - /** 对应模板id */ - @Excel(name = "对应模板id") - private Long templateId; - - /** 详情id */ - @Excel(name = "详情id") - private Long detailId; - - /** 年份 */ - @Excel(name = "年份") - private String year; - - /** 说明 */ - @Excel(name = "说明") - private String illustrate; - - /** 金额 */ - @Excel(name = "金额") - private Long amount; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIndustrialInternetAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIndustrialInternetAwardAddDto.java deleted file mode 100644 index 1e363df..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIndustrialInternetAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIndustrialInternetAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIndustrialInternetAwardUpdateDto.java deleted file mode 100644 index c9455be..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIndustrialInternetAwardUpdateDto.java +++ /dev/null @@ -1,33 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.declaration.entity.BmsIndustrialInternetAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 5G+工业互联网奖补对象 bms_industrial_internet_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsIndustrialInternetAwardUpdateDto extends BmsIndustrialInternetAward { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @Excel(name = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIntegrationIndustriesAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIntegrationIndustriesAddDto.java deleted file mode 100644 index a000b0e..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIntegrationIndustriesAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIntegrationIndustriesUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIntegrationIndustriesUpdateDto.java deleted file mode 100644 index 21cd9dc..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsIntegrationIndustriesUpdateDto.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.jjh.declaration.entity.BmsIntegrationIndustries; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 两业融合奖补对象 bms_integration_industries - * - * @author farben - * @date 2023-09-04 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsIntegrationIndustriesUpdateDto extends BmsIntegrationIndustries { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsLogisticsDevelopmentAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsLogisticsDevelopmentAwardAddDto.java deleted file mode 100644 index 32a42ee..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsLogisticsDevelopmentAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsLogisticsDevelopmentAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsLogisticsDevelopmentAwardUpdateDto.java deleted file mode 100644 index bc3efa3..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsLogisticsDevelopmentAwardUpdateDto.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.jjh.declaration.entity.BmsLogisticsDevelopmentAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 物流发展奖补对象 bms_logistics_development_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsLogisticsDevelopmentAwardUpdateDto extends BmsLogisticsDevelopmentAward { - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsManufacturingServicesAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsManufacturingServicesAwardAddDto.java deleted file mode 100644 index ab16dd8..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsManufacturingServicesAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsManufacturingServicesAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsManufacturingServicesAwardUpdateDto.java deleted file mode 100644 index 996aa50..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsManufacturingServicesAwardUpdateDto.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.declaration.entity.BmsManufacturingServicesAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 制造服务业有效投入奖补对象 bms_manufacturing_services_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsManufacturingServicesAwardUpdateDto extends BmsManufacturingServicesAward { - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @Excel(name = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsMunicipalBureauReviewQueryDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsMunicipalBureauReviewQueryDto.java deleted file mode 100644 index 693176a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsMunicipalBureauReviewQueryDto.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.common.annotation.Excel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import java.io.Serializable; - -/** - *

- * 市局评审 查询 - *

- * - * @className: BmsDeclarationRecordsQueryVo - * @author: emiya.xie - * @create: 2023-08-28 17:54 - */ -@Data -public class BmsMunicipalBureauReviewQueryDto implements Serializable { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "id") - @Excel(name="对应id") - private Long id; - - @ApiModelProperty(value = "统一信用代码") - @Excel(name = "统一信用代码") - private String creditCode; - - @ApiModelProperty(value = "企业名称") - @Excel(name = "企业名称") - private String enterpriseName; - - @ApiModelProperty(value = "申报类型") - @Excel(name = "申报类型") - private String projectName; - - @ApiModelProperty(value = "年份") - @Excel(name = "年份") - private String year; - - @ApiModelProperty(value = "市级评定结果,0:通过,1:不通过") - private Integer result; - - @ApiModelProperty(value = "市级评定结果意见") - private String opinion; - - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsOutQuitProductsAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsOutQuitProductsAddDto.java deleted file mode 100644 index 68736f6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsOutQuitProductsAddDto.java +++ /dev/null @@ -1,66 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -import java.io.Serializable; - -/** - * 2024年度淘汰落后和退出低端低效产能装备清单 bms_out_quit_products 新增 - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsOutQuitProductsAddDto extends BmsEnterpriseBasicInfoAddDto implements Serializable { - - /** - * 主要产品 - */ - @ApiModelProperty("主要产品") - private String mainProducts; - - /** - * 所属行业 1轻工 2纺织 3冶金 4化工 5建材 6机械加工 - */ - @ApiModelProperty("所属行业 1轻工 2纺织 3冶金 4化工 5建材 6机械加工") - private Integer industry; - - /** - * 工作联系人 - */ - @ApiModelProperty("工作联系人") - private String workContact; - - /** - * 联系电话 - */ - @ApiModelProperty("联系电话") - private String iphone; - - /** - * 类别 1 淘汰落后生产工艺装备 2 退出低端低效生产工艺装备 - */ - @ApiModelProperty("类别 1 淘汰落后生产工艺装备 2 退出低端低效生产工艺装备") - private Integer type; - - /** - * 拟淘汰或退出生产工艺装备情况(和类别对应) - */ - @ApiModelProperty("拟淘汰或退出生产工艺装备情况(和类别对应)") - private String specifics; - - /** - * 其他相关情况说明 - */ - @ApiModelProperty("其他相关情况说明") - private String otherSpecifics; - - /** - * 在线申报记录id - */ - @ApiModelProperty(value = "在线申报记录id") - private Long declarationId; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsOutQuitProductsUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsOutQuitProductsUpdateDto.java deleted file mode 100644 index b63d5dc..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsOutQuitProductsUpdateDto.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.jjh.declaration.entity.BmsOutQuitProducts; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 2024年度淘汰落后和退出低端低效产能装备清单 bms_out_quit_products 修改 - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsOutQuitProductsUpdateDto extends BmsOutQuitProducts { - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsPlatformConstructionAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsPlatformConstructionAwardAddDto.java deleted file mode 100644 index 7016709..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsPlatformConstructionAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsPlatformConstructionAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsPlatformConstructionAwardUpdateDto.java deleted file mode 100644 index 78f3ff4..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsPlatformConstructionAwardUpdateDto.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 平台建设奖补对象 bms_platform_construction_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsPlatformConstructionAwardUpdateDto extends BmsPlatformConstructionAward { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsProjectSettlementAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsProjectSettlementAwardAddDto.java deleted file mode 100644 index 6c1f094..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsProjectSettlementAwardAddDto.java +++ /dev/null @@ -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 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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsProjectSettlementAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsProjectSettlementAwardUpdateDto.java deleted file mode 100644 index 131766e..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsProjectSettlementAwardUpdateDto.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -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.io.Serializable; -import java.util.List; - -/** - * 项目落户奖补对象 bms_project_settlement_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsProjectSettlementAwardUpdateDto extends BmsProjectSettlementAward implements Serializable { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "应收列表") - private List fundingDetailList; - - @ApiModelProperty(value = "项目名称") - private String projectName; - - @ApiModelProperty(value = "项目id") - private Long projectId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsSceneOpeningAwardAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsSceneOpeningAwardAddDto.java deleted file mode 100644 index 116ae80..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsSceneOpeningAwardAddDto.java +++ /dev/null @@ -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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsSceneOpeningAwardUpdateDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsSceneOpeningAwardUpdateDto.java deleted file mode 100644 index 15a3a71..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BmsSceneOpeningAwardUpdateDto.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import com.ruoyi.jjh.declaration.entity.BmsSceneOpeningAward; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; - -/** - * 场景开放奖补对象 bms_scene_opening_award - * - * @author farben - * @date 2023-08-25 - */ -@Data -@EqualsAndHashCode(callSuper = true) -public class BmsSceneOpeningAwardUpdateDto extends BmsSceneOpeningAward { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "记录id") - private Long declarationRecordsId; - - @ApiModelProperty(value = "审批状态:0=待填报,1=初审中,2=复审中,3=终审中,5=评审通过,6=已填报,7=复审不通过,8=初审不通过,9=终审不通过,10=初审驳回") - private Long status; - - @ApiModelProperty(value = "项目id") - private Long projectId; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BsmFundingInfoAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BsmFundingInfoAddDto.java deleted file mode 100644 index f84afae..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/BsmFundingInfoAddDto.java +++ /dev/null @@ -1,69 +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 java.io.Serializable; -import java.util.Date; - -/** - * 资金信息对象 bsm_funding_info - * - * @author farben - * @date 2023-08-25 - */ -@Data -public class BsmFundingInfoAddDto implements Serializable { - - private static final long serialVersionUID = 1L; - - /** 模板类型:0:项目落户奖补,1:做大做强奖补 */ - @Excel(name = "模板类型:1:项目落户奖补,2:做大做强奖补") - private Long type; - - /** 对应模板id */ - @Excel(name = "对应模板id") - private Long templateId; - - @ApiModelProperty(value = "详情id") - private Long detailId; - - /** 营收年份 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "营收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date revenueYear; - - /** 营收 */ - @Excel(name = "营收") - private Long revenue; - - /** 税收年份 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "税收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date taxationYear; - - /** 税收 */ - @Excel(name = "税收") - private Long taxation; - - /** 预计营收年份 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "预计营收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date expectedRevenueYear; - - /** 预计营收 */ - @Excel(name = "预计营收") - private Long expectedRevenue; - - /** 预计税收年份 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "预计税收年份", width = 30, dateFormat = "yyyy-MM-dd") - private Date expectedTaxationYear; - - /** 预计税收 */ - @Excel(name = "预计税收") - private Long expectedTaxation; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/MunicipalReviewDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/MunicipalReviewDto.java deleted file mode 100644 index 22a0167..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/MunicipalReviewDto.java +++ /dev/null @@ -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; - -/** - *

- * 市级评定Dto - *

- * - * @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 list; - - @ApiModelProperty(value = "市级评定信息-new") - private List reviewList; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/MunicipalReviewInfoDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/MunicipalReviewInfoDto.java deleted file mode 100644 index b646787..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/MunicipalReviewInfoDto.java +++ /dev/null @@ -1,46 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import java.io.Serializable; - -/** - *

- * 市级评定 - *

- * - * @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; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/OpenInterfaceApplyAddDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/OpenInterfaceApplyAddDto.java deleted file mode 100644 index 1f11cc6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/OpenInterfaceApplyAddDto.java +++ /dev/null @@ -1,57 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import java.io.Serializable; - -/** - *

- * 申请记录信息新增-开放 - *

- * - * @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; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/UploadDto.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/UploadDto.java deleted file mode 100644 index 4aaec09..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/dto/UploadDto.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.dto; - -import lombok.Data; - -/** - *

- * 上传内容 - *

- * - * @className: UploadDto - * @author: emiya.xie - * @create: 2023-03-01 09:53 - */ -@Data -public class UploadDto { - - private String name; - - private String url; -} \ No newline at end of file diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsBigStrongAwardQueryVo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsBigStrongAwardQueryVo.java deleted file mode 100644 index 74686a6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsBigStrongAwardQueryVo.java +++ /dev/null @@ -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 fundingDetailList; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsMunicipalBureauReviewQueryVo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsMunicipalBureauReviewQueryVo.java deleted file mode 100644 index 81636b8..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsMunicipalBureauReviewQueryVo.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.ruoyi.jjh.declaration.entity.vo; - -import com.ruoyi.common.annotation.Excel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import java.io.Serializable; - -/** - *

- * 市局评审 查询 - *

- * - * @className: BmsDeclarationRecordsQueryVo - * @author: emiya.xie - * @create: 2023-08-28 17:54 - */ -@Data -public class BmsMunicipalBureauReviewQueryVo implements Serializable { - - private static final long serialVersionUID = 1L; - - @ApiModelProperty(value = "id") - @Excel(name = "对应id") - private Long id; - - @ApiModelProperty(value = "统一信用代码") - @Excel(name = "统一信用代码") - private String creditCode; - - @ApiModelProperty(value = "企业名称") - @Excel(name = "企业名称") - private String enterpriseName; - - @ApiModelProperty(value = "申报类型") - @Excel(name = "申报类型") - private String projectName; - - @ApiModelProperty(value = "年份") - @Excel(name = "年份") - private String year; - - @ApiModelProperty(value = "市级评定结果,0:通过,1:不通过") - @Excel(name = "市级评定结果,0:通过,1:不通过") - private Integer result; - - @ApiModelProperty(value = "市级评定结果意见") - @Excel(name = "市级评定结果意见") - private String opinion; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsProjectSettlementAwardQueryVo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsProjectSettlementAwardQueryVo.java deleted file mode 100644 index 55c9337..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsProjectSettlementAwardQueryVo.java +++ /dev/null @@ -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 fundingDetailList; -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsProjectSettlementAwardVo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsProjectSettlementAwardVo.java deleted file mode 100644 index 907c9ba..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/BmsProjectSettlementAwardVo.java +++ /dev/null @@ -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 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; - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/EnterpriseInfoTemplateVo.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/EnterpriseInfoTemplateVo.java index ca445bd..45d7356 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/EnterpriseInfoTemplateVo.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/entity/vo/EnterpriseInfoTemplateVo.java @@ -1,7 +1,6 @@ package com.ruoyi.jjh.declaration.entity.vo; import com.ruoyi.jjh.declaration.entity.BmsEnterpriseBasicInfo; -import com.ruoyi.jjh.declaration.entity.BmsProjectInfo; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -28,8 +27,4 @@ public class EnterpriseInfoTemplateVo implements Serializable { @ApiModelProperty(value = "在线模板列表") private List templateRecordList; - @ApiModelProperty(value = "项目列表") - private List projectInfoList; - - } diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsBigStrongAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsBigStrongAwardMapper.java deleted file mode 100644 index f01ed3b..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsBigStrongAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询做大做强奖详情 - * - * @param id 做大做强奖详情主键 - * @return 做大做强奖详情 - */ - public BmsBigStrongAwardQueryVo selectBmsBigStrongAwardById(Long id); - - /** - * 查询做大做强奖详情列表 - * - * @param bmsBigStrongAward 做大做强奖详情 - * @return 做大做强奖详情集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsBrandingAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsBrandingAwardMapper.java deleted file mode 100644 index 4c39cd1..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsBrandingAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询品牌打造奖补 - * - * @param id 品牌打造奖补主键 - * @return 品牌打造奖补 - */ - public BmsBrandingAward selectBmsBrandingAwardById(Long id); - - /** - * 查询品牌打造奖补列表 - * - * @param bmsBrandingAward 品牌打造奖补 - * @return 品牌打造奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsCarrierConstructionAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsCarrierConstructionAwardMapper.java deleted file mode 100644 index 22e4cb5..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsCarrierConstructionAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询载体建设奖补 - * - * @param id 载体建设奖补主键 - * @return 载体建设奖补 - */ - public BmsCarrierConstructionAward selectBmsCarrierConstructionAwardById(Long id); - - /** - * 查询载体建设奖补列表 - * - * @param bmsCarrierConstructionAward 载体建设奖补 - * @return 载体建设奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsCreditManagementMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsCreditManagementMapper.java deleted file mode 100644 index 19369cd..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsCreditManagementMapper.java +++ /dev/null @@ -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 { - /** - * 查询信用管理奖补 - * - * @param id 信用管理奖补主键 - * @return 信用管理奖补 - */ - public BmsCreditManagement selectBmsCreditManagementById(Long id); - - /** - * 查询信用管理奖补列表 - * - * @param bmsCreditManagement 信用管理奖补 - * @return 信用管理奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsDeclarationRecordsMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsDeclarationRecordsMapper.java index 0edf3c4..f1e9fac 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsDeclarationRecordsMapper.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsDeclarationRecordsMapper.java @@ -1,7 +1,6 @@ package com.ruoyi.jjh.declaration.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.ruoyi.jjh.declaration.entity.BmsApprovalInfo; import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; import com.ruoyi.jjh.declaration.entity.dto.ApprovalDeclarationRecordsQueryDto; import com.ruoyi.jjh.declaration.entity.dto.BmsDeclarationRecordsDto; @@ -9,7 +8,6 @@ import com.ruoyi.jjh.ent.entity.JProject; import com.ruoyi.jjh.ent.entity.JSmartDeclaration; import com.ruoyi.jjh.declaration.entity.vo.ApprovalDeclarationRecordsQueryVo; import com.ruoyi.jjh.declaration.entity.vo.BmsDeclarationRecordsQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.BmsMunicipalBureauReviewQueryVo; import org.apache.ibatis.annotations.Param; import java.util.List; diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFieldInfoMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFieldInfoMapper.java deleted file mode 100644 index 053d961..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFieldInfoMapper.java +++ /dev/null @@ -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 { - /** - * 查询模板字段填写详情 - * - * @param id 模板字段填写详情主键 - * @return 模板字段填写详情 - */ - public BmsFieldInfo selectBmsFieldInfoById(Long id); - - /** - * 查询模板字段填写详情列表 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 模板字段填写详情集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFileInfoMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFileInfoMapper.java deleted file mode 100644 index cb8e83d..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFileInfoMapper.java +++ /dev/null @@ -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 { - /** - * 查询文件存储说明详情 - * - * @param id 文件存储说明详情主键 - * @return 文件存储说明详情 - */ - public BmsFileInfo selectBmsFileInfoById(Long id); - - /** - * 查询文件存储说明详情列表 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 文件存储说明详情集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFundingDetailMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFundingDetailMapper.java deleted file mode 100644 index 8b6c679..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsFundingDetailMapper.java +++ /dev/null @@ -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 { - /** - * 查询资金信息详情 - * - * @param id 资金信息详情主键 - * @return 资金信息详情 - */ - public BmsFundingDetail selectBmsFundingDetailById(Long id); - - /** - * 查询资金信息详情列表 - * - * @param bmsFundingDetail 资金信息详情 - * @return 资金信息详情集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsIndustrialInternetAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsIndustrialInternetAwardMapper.java deleted file mode 100644 index 9034f49..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsIndustrialInternetAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询5G+工业互联网奖补 - * - * @param id 5G+工业互联网奖补主键 - * @return 5G+工业互联网奖补 - */ - public BmsIndustrialInternetAward selectBmsIndustrialInternetAwardById(Long id); - - /** - * 查询5G+工业互联网奖补列表 - * - * @param bmsIndustrialInternetAward 5G+工业互联网奖补 - * @return 5G+工业互联网奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsIntegrationIndustriesMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsIntegrationIndustriesMapper.java deleted file mode 100644 index a17f394..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsIntegrationIndustriesMapper.java +++ /dev/null @@ -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 { - /** - * 查询两业融合奖补 - * - * @param id 两业融合奖补主键 - * @return 两业融合奖补 - */ - public BmsIntegrationIndustries selectBmsIntegrationIndustriesById(Long id); - - /** - * 查询两业融合奖补列表 - * - * @param bmsIntegrationIndustries 两业融合奖补 - * @return 两业融合奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsLogisticsDevelopmentAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsLogisticsDevelopmentAwardMapper.java deleted file mode 100644 index cff8189..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsLogisticsDevelopmentAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询物流发展奖补 - * - * @param id 物流发展奖补主键 - * @return 物流发展奖补 - */ - public BmsLogisticsDevelopmentAward selectBmsLogisticsDevelopmentAwardById(Long id); - - /** - * 查询物流发展奖补列表 - * - * @param bmsLogisticsDevelopmentAward 物流发展奖补 - * @return 物流发展奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsManufacturingServicesAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsManufacturingServicesAwardMapper.java deleted file mode 100644 index 76d883c..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsManufacturingServicesAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询制造服务业有效投入奖补 - * - * @param id 制造服务业有效投入奖补主键 - * @return 制造服务业有效投入奖补 - */ - public BmsManufacturingServicesAward selectBmsManufacturingServicesAwardById(Long id); - - /** - * 查询制造服务业有效投入奖补列表 - * - * @param bmsManufacturingServicesAward 制造服务业有效投入奖补 - * @return 制造服务业有效投入奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsOutQuitProductsMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsOutQuitProductsMapper.java deleted file mode 100644 index c687d4d..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsOutQuitProductsMapper.java +++ /dev/null @@ -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 { - - /** - * 查询2024年度淘汰落后和退出低端低效产能装备清单列表 - * - * @param bmsCreditManagement 信用管理奖补 - * @return 信用管理奖补集合 - */ - List selectBmsOutQuitProductsList(BmsOutQuitProducts bmsCreditManagement); - - /** - * 删除2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param id 信用管理奖补主键 - * @return 结果 - */ - int deleteBmsOutQuitProductsById(Long id); - - /** - * 批量删除2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param ids 需要删除的数据主键集合 - * @return 结果 - */ - int deleteBmsOutQuitProductsByIds(Long[] ids); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsPlatformConstructionAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsPlatformConstructionAwardMapper.java deleted file mode 100644 index 18be636..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsPlatformConstructionAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询平台建设奖补 - * - * @param id 平台建设奖补主键 - * @return 平台建设奖补 - */ - public BmsPlatformConstructionAward selectBmsPlatformConstructionAwardById(Long id); - - /** - * 查询平台建设奖补列表 - * - * @param bmsPlatformConstructionAward 平台建设奖补 - * @return 平台建设奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsProjectInfoMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsProjectInfoMapper.java deleted file mode 100644 index 39746aa..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsProjectInfoMapper.java +++ /dev/null @@ -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 { - /** - * 查询项目基本信息 - * - * @param id 项目基本信息主键 - * @return 项目基本信息 - */ - public BmsProjectInfo selectBmsProjectInfoById(Long id); - - /** - * 查询项目基本信息列表 - * - * @param bmsProjectInfo 项目基本信息 - * @return 项目基本信息集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsProjectSettlementAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsProjectSettlementAwardMapper.java deleted file mode 100644 index 11f5bae..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsProjectSettlementAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询项目落户奖补 - * - * @param id 项目落户奖补主键 - * @return 项目落户奖补 - */ - public BmsProjectSettlementAwardQueryVo selectBmsProjectSettlementAwardById(Long id); - - /** - * 查询项目落户奖补列表 - * - * @param bmsProjectSettlementAward 项目落户奖补 - * @return 项目落户奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsSceneOpeningAwardMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsSceneOpeningAwardMapper.java deleted file mode 100644 index d01eba2..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BmsSceneOpeningAwardMapper.java +++ /dev/null @@ -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 { - /** - * 查询场景开放奖补 - * - * @param id 场景开放奖补主键 - * @return 场景开放奖补 - */ - public BmsSceneOpeningAward selectBmsSceneOpeningAwardById(Long id); - - /** - * 查询场景开放奖补列表 - * - * @param bmsSceneOpeningAward 场景开放奖补 - * @return 场景开放奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BsmFundingInfoMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BsmFundingInfoMapper.java deleted file mode 100644 index 1a36a09..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/mapper/BsmFundingInfoMapper.java +++ /dev/null @@ -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 { - /** - * 查询资金信息 - * - * @param id 资金信息主键 - * @return 资金信息 - */ - public BsmFundingInfo selectBsmFundingInfoById(Long id); - - /** - * 查询资金信息列表 - * - * @param bsmFundingInfo 资金信息 - * @return 资金信息集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsBigStrongAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsBigStrongAwardService.java deleted file mode 100644 index eb5b73b..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsBigStrongAwardService.java +++ /dev/null @@ -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 { - /** - * 查询做大做强奖详情 - * - * @param id 做大做强奖详情主键 - * @return 做大做强奖详情 - */ - public BmsBigStrongAwardQueryVo selectBmsBigStrongAwardById(Long id); - - /** - * 查询做大做强奖详情列表 - * - * @param bmsBigStrongAward 做大做强奖详情 - * @return 做大做强奖详情集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsBrandingAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsBrandingAwardService.java deleted file mode 100644 index 054f5bd..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsBrandingAwardService.java +++ /dev/null @@ -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 { - /** - * 查询品牌打造奖补 - * - * @param id 品牌打造奖补主键 - * @return 品牌打造奖补 - */ - public BmsBrandingAward selectBmsBrandingAwardById(Long id); - - /** - * 查询品牌打造奖补列表 - * - * @param bmsBrandingAward 品牌打造奖补 - * @return 品牌打造奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsCarrierConstructionAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsCarrierConstructionAwardService.java deleted file mode 100644 index 45624e8..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsCarrierConstructionAwardService.java +++ /dev/null @@ -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 { - /** - * 查询载体建设奖补 - * - * @param id 载体建设奖补主键 - * @return 载体建设奖补 - */ - public BmsCarrierConstructionAward selectBmsCarrierConstructionAwardById(Long id); - - /** - * 查询载体建设奖补列表 - * - * @param bmsCarrierConstructionAward 载体建设奖补 - * @return 载体建设奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsCreditManagementService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsCreditManagementService.java deleted file mode 100644 index c238bbc..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsCreditManagementService.java +++ /dev/null @@ -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 { - /** - * 查询信用管理奖补 - * - * @param id 信用管理奖补主键 - * @return 信用管理奖补 - */ - public BmsCreditManagement selectBmsCreditManagementById(Long id); - - /** - * 查询信用管理奖补列表 - * - * @param bmsCreditManagement 信用管理奖补 - * @return 信用管理奖补集合 - */ - public List 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); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsDeclarationRecordsService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsDeclarationRecordsService.java index b74d7a9..1a40f49 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsDeclarationRecordsService.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsDeclarationRecordsService.java @@ -1,14 +1,12 @@ package com.ruoyi.jjh.declaration.service; import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsApprovalInfo; import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; import com.ruoyi.jjh.declaration.entity.dto.*; import com.ruoyi.jjh.ent.entity.JProject; import com.ruoyi.jjh.ent.entity.JSmartDeclaration; import com.ruoyi.jjh.declaration.entity.vo.ApprovalDeclarationRecordsQueryVo; import com.ruoyi.jjh.declaration.entity.vo.BmsDeclarationRecordsQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.BmsMunicipalBureauReviewQueryVo; import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; import java.util.List; diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFieldInfoService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFieldInfoService.java deleted file mode 100644 index 930a3b9..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFieldInfoService.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsFieldInfo; - -import java.util.List; - -/** - * 模板字段填写详情Service接口 - * - * @author farben - * @date 2023-09-04 - */ -public interface IBmsFieldInfoService extends IService { - /** - * 查询模板字段填写详情 - * - * @param id 模板字段填写详情主键 - * @return 模板字段填写详情 - */ - public BmsFieldInfo selectBmsFieldInfoById(Long id); - - /** - * 查询模板字段填写详情列表 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 模板字段填写详情集合 - */ - public List selectBmsFieldInfoList(BmsFieldInfo bmsFieldInfo); - - /** - * 新增模板字段填写详情 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 结果 - */ - public int insertBmsFieldInfo(BmsFieldInfo bmsFieldInfo); - - /** - * 修改模板字段填写详情 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 结果 - */ - public int updateBmsFieldInfo(BmsFieldInfo bmsFieldInfo); - - /** - * 批量删除模板字段填写详情 - * - * @param ids 需要删除的模板字段填写详情主键集合 - * @return 结果 - */ - public int deleteBmsFieldInfoByIds(Long[] ids); - - /** - * 删除模板字段填写详情信息 - * - * @param id 模板字段填写详情主键 - * @return 结果 - */ - public int deleteBmsFieldInfoById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFileInfoService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFileInfoService.java deleted file mode 100644 index 44496b5..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFileInfoService.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsFileInfo; - -import java.util.List; - -/** - * 文件存储说明详情Service接口 - * - * @author farben - * @date 2023-09-04 - */ -public interface IBmsFileInfoService extends IService { - /** - * 查询文件存储说明详情 - * - * @param id 文件存储说明详情主键 - * @return 文件存储说明详情 - */ - public BmsFileInfo selectBmsFileInfoById(Long id); - - /** - * 查询文件存储说明详情列表 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 文件存储说明详情集合 - */ - public List selectBmsFileInfoList(BmsFileInfo bmsFileInfo); - - /** - * 新增文件存储说明详情 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 结果 - */ - public int insertBmsFileInfo(BmsFileInfo bmsFileInfo); - - /** - * 修改文件存储说明详情 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 结果 - */ - public int updateBmsFileInfo(BmsFileInfo bmsFileInfo); - - /** - * 批量删除文件存储说明详情 - * - * @param ids 需要删除的文件存储说明详情主键集合 - * @return 结果 - */ - public int deleteBmsFileInfoByIds(Long[] ids); - - /** - * 删除文件存储说明详情信息 - * - * @param id 文件存储说明详情主键 - * @return 结果 - */ - public int deleteBmsFileInfoById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFundingDetailService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFundingDetailService.java deleted file mode 100644 index ac56dfd..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsFundingDetailService.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsFundingDetail; - -import java.util.List; - -/** - * 资金信息详情Service接口 - * - * @author farben - * @date 2023-09-04 - */ -public interface IBmsFundingDetailService extends IService { - /** - * 查询资金信息详情 - * - * @param id 资金信息详情主键 - * @return 资金信息详情 - */ - public BmsFundingDetail selectBmsFundingDetailById(Long id); - - /** - * 查询资金信息详情列表 - * - * @param bmsFundingDetail 资金信息详情 - * @return 资金信息详情集合 - */ - public List selectBmsFundingDetailList(BmsFundingDetail bmsFundingDetail); - - /** - * 新增资金信息详情 - * - * @param bmsFundingDetail 资金信息详情 - * @return 结果 - */ - public int insertBmsFundingDetail(BmsFundingDetail bmsFundingDetail); - - /** - * 修改资金信息详情 - * - * @param bmsFundingDetail 资金信息详情 - * @return 结果 - */ - public int updateBmsFundingDetail(BmsFundingDetail bmsFundingDetail); - - /** - * 批量删除资金信息详情 - * - * @param ids 需要删除的资金信息详情主键集合 - * @return 结果 - */ - public int deleteBmsFundingDetailByIds(Long[] ids); - - /** - * 删除资金信息详情信息 - * - * @param id 资金信息详情主键 - * @return 结果 - */ - public int deleteBmsFundingDetailById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsIndustrialInternetAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsIndustrialInternetAwardService.java deleted file mode 100644 index 101d7e4..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsIndustrialInternetAwardService.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsIndustrialInternetAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsIndustrialInternetAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsIndustrialInternetAwardUpdateDto; - -import java.util.List; -import java.util.Map; - -/** - * 5G+工业互联网奖补Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsIndustrialInternetAwardService extends IService { - /** - * 查询5G+工业互联网奖补 - * - * @param id 5G+工业互联网奖补主键 - * @return 5G+工业互联网奖补 - */ - public BmsIndustrialInternetAward selectBmsIndustrialInternetAwardById(Long id); - - /** - * 查询5G+工业互联网奖补列表 - * - * @param bmsIndustrialInternetAward 5G+工业互联网奖补 - * @return 5G+工业互联网奖补集合 - */ - public List selectBmsIndustrialInternetAwardList(BmsIndustrialInternetAward bmsIndustrialInternetAward); - - /** - * 新增5G+工业互联网奖补 - * - * @param bmsIndustrialInternetAwardAddDto 5G+工业互联网奖补 - * @return 结果 - */ - public int insertBmsIndustrialInternetAward(BmsIndustrialInternetAwardAddDto bmsIndustrialInternetAwardAddDto); - - - - /** - * 修改5G+工业互联网奖补 - * - * @param bmsIndustrialInternetAwardUpdateDto 5G+工业互联网奖补 - * @return 结果 - */ - public int updateBmsIndustrialInternetAward(BmsIndustrialInternetAwardUpdateDto bmsIndustrialInternetAwardUpdateDto); - - /** - * 批量删除5G+工业互联网奖补 - * - * @param ids 需要删除的5G+工业互联网奖补主键集合 - * @return 结果 - */ - public int deleteBmsIndustrialInternetAwardByIds(Long[] ids); - - /** - * 删除5G+工业互联网奖补信息 - * - * @param id 5G+工业互联网奖补主键 - * @return 结果 - */ - public int deleteBmsIndustrialInternetAwardById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsIntegrationIndustriesService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsIntegrationIndustriesService.java deleted file mode 100644 index 0d91fa7..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsIntegrationIndustriesService.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsIntegrationIndustries; -import com.ruoyi.jjh.declaration.entity.dto.BmsIntegrationIndustriesAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsIntegrationIndustriesUpdateDto; - -import java.util.List; -import java.util.Map; - -/** - * 两业融合奖补Service接口 - * - * @author farben - * @date 2023-09-04 - */ -public interface IBmsIntegrationIndustriesService extends IService { - /** - * 查询两业融合奖补 - * - * @param id 两业融合奖补主键 - * @return 两业融合奖补 - */ - public BmsIntegrationIndustries selectBmsIntegrationIndustriesById(Long id); - - /** - * 查询两业融合奖补列表 - * - * @param bmsIntegrationIndustries 两业融合奖补 - * @return 两业融合奖补集合 - */ - public List selectBmsIntegrationIndustriesList(BmsIntegrationIndustries bmsIntegrationIndustries); - - /** - * 新增两业融合奖补 - * - * @param bmsIntegrationIndustriesAddDto 两业融合奖补 - * @return 结果 - */ - public int insertBmsIntegrationIndustries(BmsIntegrationIndustriesAddDto bmsIntegrationIndustriesAddDto); - - - - /** - * 修改两业融合奖补 - * - * @param bmsIntegrationIndustriesUpdateDto 两业融合奖补 - * @return 结果 - */ - public int updateBmsIntegrationIndustries(BmsIntegrationIndustriesUpdateDto bmsIntegrationIndustriesUpdateDto); - - /** - * 批量删除两业融合奖补 - * - * @param ids 需要删除的两业融合奖补主键集合 - * @return 结果 - */ - public int deleteBmsIntegrationIndustriesByIds(Long[] ids); - - /** - * 删除两业融合奖补信息 - * - * @param id 两业融合奖补主键 - * @return 结果 - */ - public int deleteBmsIntegrationIndustriesById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsLogisticsDevelopmentAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsLogisticsDevelopmentAwardService.java deleted file mode 100644 index 600d79f..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsLogisticsDevelopmentAwardService.java +++ /dev/null @@ -1,66 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsLogisticsDevelopmentAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsLogisticsDevelopmentAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsLogisticsDevelopmentAwardUpdateDto; - -import java.util.List; -import java.util.Map; - -/** - * 物流发展奖补Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsLogisticsDevelopmentAwardService extends IService { - /** - * 查询物流发展奖补 - * - * @param id 物流发展奖补主键 - * @return 物流发展奖补 - */ - public BmsLogisticsDevelopmentAward selectBmsLogisticsDevelopmentAwardById(Long id); - - /** - * 查询物流发展奖补列表 - * - * @param bmsLogisticsDevelopmentAward 物流发展奖补 - * @return 物流发展奖补集合 - */ - public List selectBmsLogisticsDevelopmentAwardList(BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward); - - /** - * 新增物流发展奖补 - * - * @param bmsLogisticsDevelopmentAwardAddDto 物流发展奖补 - * @return 结果 - */ - public int insertBmsLogisticsDevelopmentAward(BmsLogisticsDevelopmentAwardAddDto bmsLogisticsDevelopmentAwardAddDto); - - - /** - * 修改物流发展奖补 - * - * @param bmsLogisticsDevelopmentAwardUpdateDto 物流发展奖补 - * @return 结果 - */ - public int updateBmsLogisticsDevelopmentAward(BmsLogisticsDevelopmentAwardUpdateDto bmsLogisticsDevelopmentAwardUpdateDto); - - /** - * 批量删除物流发展奖补 - * - * @param ids 需要删除的物流发展奖补主键集合 - * @return 结果 - */ - public int deleteBmsLogisticsDevelopmentAwardByIds(Long[] ids); - - /** - * 删除物流发展奖补信息 - * - * @param id 物流发展奖补主键 - * @return 结果 - */ - public int deleteBmsLogisticsDevelopmentAwardById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsManufacturingServicesAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsManufacturingServicesAwardService.java deleted file mode 100644 index 4aeba0e..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsManufacturingServicesAwardService.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsManufacturingServicesAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsManufacturingServicesAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsManufacturingServicesAwardUpdateDto; - -import java.util.List; -import java.util.Map; - -/** - * 制造服务业有效投入奖补Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsManufacturingServicesAwardService extends IService { - /** - * 查询制造服务业有效投入奖补 - * - * @param id 制造服务业有效投入奖补主键 - * @return 制造服务业有效投入奖补 - */ - public BmsManufacturingServicesAward selectBmsManufacturingServicesAwardById(Long id); - - /** - * 查询制造服务业有效投入奖补列表 - * - * @param bmsManufacturingServicesAward 制造服务业有效投入奖补 - * @return 制造服务业有效投入奖补集合 - */ - public List selectBmsManufacturingServicesAwardList(BmsManufacturingServicesAward bmsManufacturingServicesAward); - - /** - * 新增制造服务业有效投入奖补 - * - * @param bmsManufacturingServicesAwardAddDto 制造服务业有效投入奖补 - * @return 结果 - */ - public int insertBmsManufacturingServicesAward(BmsManufacturingServicesAwardAddDto bmsManufacturingServicesAwardAddDto); - - - - /** - * 修改制造服务业有效投入奖补 - * - * @param bmsManufacturingServicesAwardUpdateDto 制造服务业有效投入奖补 - * @return 结果 - */ - public int updateBmsManufacturingServicesAward(BmsManufacturingServicesAwardUpdateDto bmsManufacturingServicesAwardUpdateDto); - - /** - * 批量删除制造服务业有效投入奖补 - * - * @param ids 需要删除的制造服务业有效投入奖补主键集合 - * @return 结果 - */ - public int deleteBmsManufacturingServicesAwardByIds(Long[] ids); - - /** - * 删除制造服务业有效投入奖补信息 - * - * @param id 制造服务业有效投入奖补主键 - * @return 结果 - */ - public int deleteBmsManufacturingServicesAwardById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsOutQuitProductsService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsOutQuitProductsService.java deleted file mode 100644 index 2eb5034..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsOutQuitProductsService.java +++ /dev/null @@ -1,64 +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.BmsOutQuitProducts; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsOutQuitProductsAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsOutQuitProductsUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; - -import java.util.List; -import java.util.Map; - -/** - * 2024年度淘汰落后和退出低端低效产能装备清单Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsOutQuitProductsService extends IService { - - /** - * 查询2024年度淘汰落后和退出低端低效产能装备清单列表 - * - * @param bmsOutQuitProducts 详情 - * @return 详情集合 - */ - List selectBmsOutQuitProductsList(BmsOutQuitProducts bmsOutQuitProducts); - - /** - * 新增2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param bmsOutQuitProductsAddDto 详情 - * @return 结果 - */ - int insertBmsOutQuitProducts(BmsOutQuitProductsAddDto bmsOutQuitProductsAddDto); - - - - /** - * 修改2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param bmsOutQuitProductsUpdateDto 详情 - * @return 结果 - */ - int updateBmsOutQuitProducts(BmsOutQuitProductsUpdateDto bmsOutQuitProductsUpdateDto); - - /** - * 批量删除2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param ids 主键集合 - * @return 结果 - */ - int deleteBmsOutQuitProductsByIds(Long[] ids); - - /** - * 删除2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param id 详情主键 - * @return 结果 - */ - int deleteBmsOutQuitProductsById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsPlatformConstructionAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsPlatformConstructionAwardService.java deleted file mode 100644 index 0202539..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsPlatformConstructionAwardService.java +++ /dev/null @@ -1,66 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsPlatformConstructionAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsPlatformConstructionAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsPlatformConstructionAwardUpdateDto; - -import java.util.List; -import java.util.Map; - -/** - * 平台建设奖补Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsPlatformConstructionAwardService extends IService { - /** - * 查询平台建设奖补 - * - * @param id 平台建设奖补主键 - * @return 平台建设奖补 - */ - public BmsPlatformConstructionAward selectBmsPlatformConstructionAwardById(Long id); - - /** - * 查询平台建设奖补列表 - * - * @param bmsPlatformConstructionAward 平台建设奖补 - * @return 平台建设奖补集合 - */ - public List selectBmsPlatformConstructionAwardList(BmsPlatformConstructionAward bmsPlatformConstructionAward); - - /** - * 新增平台建设奖补 - * - * @param bmsPlatformConstructionAwardAddDto 平台建设奖补 - * @return 结果 - */ - public int insertBmsPlatformConstructionAward(BmsPlatformConstructionAwardAddDto bmsPlatformConstructionAwardAddDto); - - - /** - * 修改平台建设奖补 - * - * @param bmsPlatformConstructionAwardUpdateDto 平台建设奖补 - * @return 结果 - */ - public int updateBmsPlatformConstructionAward(BmsPlatformConstructionAwardUpdateDto bmsPlatformConstructionAwardUpdateDto); - - /** - * 批量删除平台建设奖补 - * - * @param ids 需要删除的平台建设奖补主键集合 - * @return 结果 - */ - public int deleteBmsPlatformConstructionAwardByIds(Long[] ids); - - /** - * 删除平台建设奖补信息 - * - * @param id 平台建设奖补主键 - * @return 结果 - */ - public int deleteBmsPlatformConstructionAwardById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsProjectInfoService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsProjectInfoService.java deleted file mode 100644 index 94075e1..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsProjectInfoService.java +++ /dev/null @@ -1,65 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsProjectInfo; - -import java.util.List; - -/** - * 项目基本信息Service接口 - * - * @author farben - * @date 2023-09-09 - */ -public interface IBmsProjectInfoService extends IService { - /** - * 查询项目基本信息 - * - * @param id 项目基本信息主键 - * @return 项目基本信息 - */ - public BmsProjectInfo selectBmsProjectInfoById(Long id); - - /** - * 查询项目基本信息列表 - * - * @param bmsProjectInfo 项目基本信息 - * @return 项目基本信息集合 - */ - public List selectBmsProjectInfoList(BmsProjectInfo bmsProjectInfo); - - /** - * 新增项目基本信息 - * - * @param bmsProjectInfo 项目基本信息 - * @return 结果 - */ - public int insertBmsProjectInfo(BmsProjectInfo bmsProjectInfo); - - /** - * 修改项目基本信息 - * - * @param bmsProjectInfo 项目基本信息 - * @return 结果 - */ - public int updateBmsProjectInfo(BmsProjectInfo bmsProjectInfo); - - /** - * 批量删除项目基本信息 - * - * @param ids 需要删除的项目基本信息主键集合 - * @return 结果 - */ - public int deleteBmsProjectInfoByIds(Long[] ids); - - /** - * 删除项目基本信息信息 - * - * @param id 项目基本信息主键 - * @return 结果 - */ - public int deleteBmsProjectInfoById(Long id); - - - public BmsProjectInfo getProjectInfo(Long templateRecordId); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsProjectSettlementAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsProjectSettlementAwardService.java deleted file mode 100644 index 363e07a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsProjectSettlementAwardService.java +++ /dev/null @@ -1,66 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsProjectSettlementAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsProjectSettlementAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsProjectSettlementAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsProjectSettlementAwardQueryVo; - -import java.util.List; -import java.util.Map; - -/** - * 项目落户奖补Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsProjectSettlementAwardService extends IService { - /** - * 查询项目落户奖补 - * - * @param id 项目落户奖补主键 - * @return 项目落户奖补 - */ - public BmsProjectSettlementAwardQueryVo selectBmsProjectSettlementAwardById(Long id); - - /** - * 查询项目落户奖补列表 - * - * @param bmsProjectSettlementAward 项目落户奖补 - * @return 项目落户奖补集合 - */ - public List selectBmsProjectSettlementAwardList(BmsProjectSettlementAward bmsProjectSettlementAward); - - /** - * 新增项目落户奖补 - * - * @param bmsProjectSettlementAwardAddDto 项目落户奖补 - * @return 结果 - */ - public int insertBmsProjectSettlementAward(BmsProjectSettlementAwardAddDto bmsProjectSettlementAwardAddDto); - - /** - * 修改项目落户奖补 - * - * @param bmsProjectSettlementAwardUpdateDto 项目落户奖补 - * @return 结果 - */ - public int updateBmsProjectSettlementAward(BmsProjectSettlementAwardUpdateDto bmsProjectSettlementAwardUpdateDto); - - /** - * 批量删除项目落户奖补 - * - * @param ids 需要删除的项目落户奖补主键集合 - * @return 结果 - */ - public int deleteBmsProjectSettlementAwardByIds(Long[] ids); - - /** - * 删除项目落户奖补信息 - * - * @param id 项目落户奖补主键 - * @return 结果 - */ - public int deleteBmsProjectSettlementAwardById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsSceneOpeningAwardService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsSceneOpeningAwardService.java deleted file mode 100644 index eb5dab0..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBmsSceneOpeningAwardService.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsSceneOpeningAward; -import com.ruoyi.jjh.declaration.entity.dto.BmsSceneOpeningAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsSceneOpeningAwardUpdateDto; - -import java.util.List; -import java.util.Map; - -/** - * 场景开放奖补Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBmsSceneOpeningAwardService extends IService { - /** - * 查询场景开放奖补 - * - * @param id 场景开放奖补主键 - * @return 场景开放奖补 - */ - public BmsSceneOpeningAward selectBmsSceneOpeningAwardById(Long id); - - /** - * 查询场景开放奖补列表 - * - * @param bmsSceneOpeningAward 场景开放奖补 - * @return 场景开放奖补集合 - */ - public List selectBmsSceneOpeningAwardList(BmsSceneOpeningAward bmsSceneOpeningAward); - - /** - * 新增场景开放奖补 - * - * @param bmsSceneOpeningAwardAddDto 场景开放奖补 - * @return 结果 - */ - public int insertBmsSceneOpeningAward(BmsSceneOpeningAwardAddDto bmsSceneOpeningAwardAddDto); - - - - /** - * 修改场景开放奖补 - * - * @param bmsSceneOpeningAwardUpdateDto 场景开放奖补 - * @return 结果 - */ - public int updateBmsSceneOpeningAward(BmsSceneOpeningAwardUpdateDto bmsSceneOpeningAwardUpdateDto); - - /** - * 批量删除场景开放奖补 - * - * @param ids 需要删除的场景开放奖补主键集合 - * @return 结果 - */ - public int deleteBmsSceneOpeningAwardByIds(Long[] ids); - - /** - * 删除场景开放奖补信息 - * - * @param id 场景开放奖补主键 - * @return 结果 - */ - public int deleteBmsSceneOpeningAwardById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBsmFundingInfoService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBsmFundingInfoService.java deleted file mode 100644 index 7f9fbd0..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IBsmFundingInfoService.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BsmFundingInfo; - -import java.util.List; - -/** - * 资金信息Service接口 - * - * @author farben - * @date 2023-08-25 - */ -public interface IBsmFundingInfoService extends IService { - /** - * 查询资金信息 - * - * @param id 资金信息主键 - * @return 资金信息 - */ - public BsmFundingInfo selectBsmFundingInfoById(Long id); - - /** - * 查询资金信息列表 - * - * @param bsmFundingInfo 资金信息 - * @return 资金信息集合 - */ - public List selectBsmFundingInfoList(BsmFundingInfo bsmFundingInfo); - - /** - * 新增资金信息 - * - * @param bsmFundingInfo 资金信息 - * @return 结果 - */ - public int insertBsmFundingInfo(BsmFundingInfo bsmFundingInfo); - - /** - * 修改资金信息 - * - * @param bsmFundingInfo 资金信息 - * @return 结果 - */ - public int updateBsmFundingInfo(BsmFundingInfo bsmFundingInfo); - - /** - * 批量删除资金信息 - * - * @param ids 需要删除的资金信息主键集合 - * @return 结果 - */ - public int deleteBsmFundingInfoByIds(Long[] ids); - - /** - * 删除资金信息信息 - * - * @param id 资金信息主键 - * @return 结果 - */ - public int deleteBsmFundingInfoById(Long id); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/ICommonService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/ICommonService.java index 8b56f99..eaac563 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/ICommonService.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/ICommonService.java @@ -1,11 +1,5 @@ package com.ruoyi.jjh.declaration.service; -import com.ruoyi.jjh.declaration.entity.dto.BmsApprovalInfoUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.OpenInterfaceApplyAddDto; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; - -import java.util.List; - /** *

* 公共服务 diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IOpenInterfaceService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IOpenInterfaceService.java deleted file mode 100644 index 3f890a6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/IOpenInterfaceService.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.ruoyi.jjh.declaration.service; - -import com.ruoyi.jjh.declaration.entity.BmsProjectInfo; -import com.ruoyi.jjh.declaration.entity.dto.OpenInterfaceApplyAddDto; -import com.ruoyi.jjh.declaration.entity.vo.EnterpriseInfoTemplateVo; - - -/** - *

- * 开放接口 - *

- * - * @className: IOpenInterfaceService - * @author: emiya.xie - * @create: 2023-09-12 10:13 - */ -public interface IOpenInterfaceService { - -// public EnterpriseInfoTemplateVo enterpriseList(String creditCode); - - - public int insertOpenInterfaceApplyAddDto(OpenInterfaceApplyAddDto openInterfaceApplyAddDto); - - public BmsProjectInfo getProjectInfo(Long templateRecordId); - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsBigStrongAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsBigStrongAwardServiceImpl.java deleted file mode 100644 index f24fd4e..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsBigStrongAwardServiceImpl.java +++ /dev/null @@ -1,217 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.jjh.declaration.entity.BmsBigStrongAward; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsFundingDetail; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsFundingDetailAddDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.mapper.BmsBigStrongAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Lazy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.util.ArrayList; -import java.util.List; - -/** - * 做大做强奖详情Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -@Lazy -public class BmsBigStrongAwardServiceImpl extends ServiceImpl implements IBmsBigStrongAwardService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsFundingDetailService iBmsFundingDetailService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - - @Resource - private JProjectService jProjectService; - /** - * 查询做大做强奖详情 - * - * @param id 做大做强奖详情主键 - * @return 做大做强奖详情 - */ - @Override - public BmsBigStrongAwardQueryVo selectBmsBigStrongAwardById(Long id) { - return baseMapper.selectBmsBigStrongAwardById(id); - } - - /** - * 查询做大做强奖详情列表 - * - * @param bmsBigStrongAward 做大做强奖详情 - * @return 做大做强奖详情 - */ - @Override - public List selectBmsBigStrongAwardList(BmsBigStrongAward bmsBigStrongAward) { - return baseMapper.selectBmsBigStrongAwardList(bmsBigStrongAward); - } - - /** - * 新增做大做强奖详情 - * - * @param bmsBigStrongAwardAddDto 做大做强奖详情 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsBigStrongAward(BmsBigStrongAwardAddDto bmsBigStrongAwardAddDto) { - - // check 企业信息 - Long enterpriseId = iCommonService.checkEnterprise(bmsBigStrongAwardAddDto.getTyshxydm(), bmsBigStrongAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsBigStrongAwardAddDto.getTyshxydm() - , bmsBigStrongAwardAddDto.getTemplateRecordId()); - if (enterpriseId == 0) { - return 0; - } - BmsBigStrongAward bmsBigStrongAward = new BmsBigStrongAward(); - BeanUtil.copyProperties(bmsBigStrongAwardAddDto, bmsBigStrongAward); - bmsBigStrongAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsBigStrongAward); - - List fundingDetailList = bmsBigStrongAwardAddDto.getFundingDetailList(); - List fundingInfoList = new ArrayList<>(); - fundingDetailList.forEach(x -> { - BmsFundingDetail fundingInfo = new BmsFundingDetail(); - BeanUtil.copyProperties(x, fundingInfo); - fundingInfo.setType(2); - fundingInfo.setTemplateRecordId(bmsBigStrongAwardAddDto.getTemplateRecordId()); - fundingInfo.setDetailId(bmsBigStrongAward.getId()); - fundingInfoList.add(fundingInfo); - }); - // 批量新增资金信息 - iBmsFundingDetailService.saveOrUpdateBatch(fundingInfoList); - // 修改在线申报记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交做大做强奖补申请"); - declarationRecords.setDetailId(bmsBigStrongAward.getId()); - declarationRecords.setId(bmsBigStrongAwardAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsBigStrongAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsBigStrongAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - String jsonString = jProjectService.getJsonString(fundingInfoList); - JSONObject mergedObj = new JSONObject(); - mergedObj.putAll(JSONObject.parseObject(jsonString)); - if (bmsBigStrongAward.getIsGainRewards() == 0) { - bmsBigStrongAward.setNewRewardDescription("是"); - } else { - bmsBigStrongAward.setNewRewardDescription("否"); - } - mergedObj.putAll(JSONObject.parseObject(JSONObject.toJSONString(bmsBigStrongAward))); - addProject.setOtherJson(mergedObj.toJSONString()); - addProject.setFileJson("{" + - '"' + "企业近3年发展情况及未来发展计划" + '"' + ":" + '"' + bmsBigStrongAward.getDevelopmentPlan() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - // 申请审批 - iCommonService.insertAuditRecord(declarationRecords.getId(), 0); - - } - return num; - } - - - /** - * 修改做大做强奖详情 - * - * @param bmsBigStrongAwardUpdateDto 做大做强奖详情 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsBigStrongAward(BmsBigStrongAwardUpdateDto bmsBigStrongAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsBigStrongAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsBigStrongAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - num = baseMapper.updateBmsBigStrongAward(bmsBigStrongAwardUpdateDto); - List fundingDetailList = bmsBigStrongAwardUpdateDto.getFundingDetailList(); - iBmsFundingDetailService.saveOrUpdateBatch(fundingDetailList); - // 申请审批 - if (bmsBigStrongAwardUpdateDto.getStatus() == 1) { - JProject jP = new JProject(); - BmsBigStrongAward bmsBigStrongAward = new BmsBigStrongAward(); - BeanUtil.copyProperties(bmsBigStrongAwardUpdateDto, bmsBigStrongAward); - jP.setId(iBmsDeclarationRecordsService.getById(bmsBigStrongAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - JSONObject mergedObj = new JSONObject(); - mergedObj.putAll(JSONObject.parseObject(jProjectService.getJsonString(fundingDetailList))); - mergedObj.putAll(JSONObject.parseObject(JSONObject.toJSONString(bmsBigStrongAward))); - jP.setOtherJson(mergedObj.toJSONString()); - jP.setFileJson("{" + - '"' + "企业近3年发展情况及未来发展计划" + '"' + ":" + '"' + bmsBigStrongAward.getDevelopmentPlan() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 修改审批状态 - iCommonService.updateAuditRecord(bmsBigStrongAwardUpdateDto.getDeclarationRecordsId(), 0); - } - } catch (Exception e) { - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除做大做强奖详情 - * - * @param ids 需要删除的做大做强奖详情主键 - * @return 结果 - */ - @Override - public int deleteBmsBigStrongAwardByIds(Long[] ids) { - return baseMapper.deleteBmsBigStrongAwardByIds(ids); - } - - /** - * 删除做大做强奖详情信息 - * - * @param id 做大做强奖详情主键 - * @return 结果 - */ - @Override - public int deleteBmsBigStrongAwardById(Long id) { - return baseMapper.deleteBmsBigStrongAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsBrandingAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsBrandingAwardServiceImpl.java deleted file mode 100644 index 442f5f3..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsBrandingAwardServiceImpl.java +++ /dev/null @@ -1,183 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsBigStrongAward; -import com.ruoyi.jjh.declaration.entity.BmsBrandingAward; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsBrandingAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBrandingAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsBrandingAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 品牌打造奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsBrandingAwardServiceImpl extends ServiceImpl implements IBmsBrandingAwardService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询品牌打造奖补 - * - * @param id 品牌打造奖补主键 - * @return 品牌打造奖补 - */ - @Override - public BmsBrandingAward selectBmsBrandingAwardById(Long id) { - return baseMapper.selectBmsBrandingAwardById(id); - } - - /** - * 查询品牌打造奖补列表 - * - * @param bmsBrandingAward 品牌打造奖补 - * @return 品牌打造奖补 - */ - @Override - public List selectBmsBrandingAwardList(BmsBrandingAward bmsBrandingAward) { - return baseMapper.selectBmsBrandingAwardList(bmsBrandingAward); - } - - /** - * 新增品牌打造奖补 - * - * @param bmsBrandingAwardAddDto 品牌打造奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsBrandingAward(BmsBrandingAwardAddDto bmsBrandingAwardAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsBrandingAwardAddDto.getTyshxydm() - ,bmsBrandingAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsBrandingAwardAddDto.getTyshxydm() - ,bmsBrandingAwardAddDto.getTemplateRecordId()); - BmsBrandingAward bmsBrandingAward = new BmsBrandingAward(); - BeanUtil.copyProperties(bmsBrandingAwardAddDto,bmsBrandingAward); - bmsBrandingAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsBrandingAward); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交品牌打造奖补申请"); - declarationRecords.setDetailId(bmsBrandingAward.getId()); - declarationRecords.setId(bmsBrandingAwardAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsBrandingAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - iBmsDeclarationRecordsService.updateById(declarationRecords); - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsBrandingAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsBrandingAward)); - addProject.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' +bmsBrandingAward.getEvidence()+ '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - // 审批状态 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改品牌打造奖补 - * - * @param bmsBrandingAwardUpdateDto 品牌打造奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsBrandingAward(BmsBrandingAwardUpdateDto bmsBrandingAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsBrandingAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsBrandingAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsBrandingAwardUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num = baseMapper.updateBmsBrandingAward(bmsBrandingAwardUpdateDto); - // 申请审批 - if (bmsBrandingAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsBrandingAward bmsBrandingAward =new BmsBrandingAward(); - BeanUtil.copyProperties(bmsBrandingAwardUpdateDto, bmsBrandingAward); - jP.setId(iBmsDeclarationRecordsService.getById(bmsBrandingAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(bmsBrandingAward)); - jP.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + bmsBrandingAward.getEvidence() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsBrandingAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除品牌打造奖补 - * - * @param ids 需要删除的品牌打造奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsBrandingAwardByIds(Long[] ids) { - return baseMapper.deleteBmsBrandingAwardByIds(ids); - } - - /** - * 删除品牌打造奖补信息 - * - * @param id 品牌打造奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsBrandingAwardById(Long id) { - return baseMapper.deleteBmsBrandingAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsCarrierConstructionAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsCarrierConstructionAwardServiceImpl.java deleted file mode 100644 index b92bb55..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsCarrierConstructionAwardServiceImpl.java +++ /dev/null @@ -1,189 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsBrandingAward; -import com.ruoyi.jjh.declaration.entity.BmsCarrierConstructionAward; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsCarrierConstructionAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsCarrierConstructionAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsCarrierConstructionAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 载体建设奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsCarrierConstructionAwardServiceImpl extends ServiceImpl implements IBmsCarrierConstructionAwardService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询载体建设奖补 - * - * @param id 载体建设奖补主键 - * @return 载体建设奖补 - */ - @Override - public BmsCarrierConstructionAward selectBmsCarrierConstructionAwardById(Long id) { - return baseMapper.selectBmsCarrierConstructionAwardById(id); - } - - /** - * 查询载体建设奖补列表 - * - * @param bmsCarrierConstructionAward 载体建设奖补 - * @return 载体建设奖补 - */ - @Override - public List selectBmsCarrierConstructionAwardList(BmsCarrierConstructionAward bmsCarrierConstructionAward) { - return baseMapper.selectBmsCarrierConstructionAwardList(bmsCarrierConstructionAward); - } - - /** - * 新增载体建设奖补 - * - * @param bmsCarrierConstructionAwardAddDto 载体建设奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsCarrierConstructionAward(BmsCarrierConstructionAwardAddDto bmsCarrierConstructionAwardAddDto) { - - Long enterpriseId = iCommonService.checkEnterprise(bmsCarrierConstructionAwardAddDto.getTyshxydm() - ,bmsCarrierConstructionAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsCarrierConstructionAwardAddDto.getTyshxydm() - ,bmsCarrierConstructionAwardAddDto.getTemplateRecordId()); - BmsCarrierConstructionAward bmsCarrierConstructionAward = new BmsCarrierConstructionAward(); - BeanUtil.copyProperties(bmsCarrierConstructionAwardAddDto,bmsCarrierConstructionAward); - bmsCarrierConstructionAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsCarrierConstructionAward); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交载体建设奖补申请"); - declarationRecords.setDetailId(bmsCarrierConstructionAward.getId()); - declarationRecords.setId(bmsCarrierConstructionAwardAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsCarrierConstructionAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsCarrierConstructionAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsCarrierConstructionAward)); - addProject.setFileJson("{" + - '"' + "相关佐证资料" + '"' + ":" + '"' + bmsCarrierConstructionAward.getSupportingMaterials() + '"' + ','+ - '"' + "项目工商登记许可" + '"' + ":" + '"' + bmsCarrierConstructionAward.getBusinessLicense() + '"' + ','+ - '"' + "消防验收报告" + '"' + ":" + '"' + bmsCarrierConstructionAward.getFireReport() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改载体建设奖补 - * - * @param bmsCarrierConstructionAwardUpdateDto 载体建设奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsCarrierConstructionAward(BmsCarrierConstructionAwardUpdateDto bmsCarrierConstructionAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsCarrierConstructionAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsCarrierConstructionAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsCarrierConstructionAwardUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num = baseMapper.updateBmsCarrierConstructionAward(bmsCarrierConstructionAwardUpdateDto); - // 申请审批 - if (bmsCarrierConstructionAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsCarrierConstructionAward bmsCarrierConstructionAward =new BmsCarrierConstructionAward(); - BeanUtil.copyProperties(bmsCarrierConstructionAwardUpdateDto, bmsCarrierConstructionAward); - jP.setId(iBmsDeclarationRecordsService.getById(bmsCarrierConstructionAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(bmsCarrierConstructionAward)); - jP.setFileJson("{" + - '"' + "相关佐证资料" + '"' + ":" + '"' + bmsCarrierConstructionAward.getSupportingMaterials() + '"' + ','+ - '"' + "项目工商登记许可" + '"' + ":" + '"' + bmsCarrierConstructionAward.getBusinessLicense() + '"' + ','+ - '"' + "消防验收报告" + '"' + ":" + '"' + bmsCarrierConstructionAward.getFireReport() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsCarrierConstructionAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除载体建设奖补 - * - * @param ids 需要删除的载体建设奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsCarrierConstructionAwardByIds(Long[] ids) { - return baseMapper.deleteBmsCarrierConstructionAwardByIds(ids); - } - - /** - * 删除载体建设奖补信息 - * - * @param id 载体建设奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsCarrierConstructionAwardById(Long id) { - return baseMapper.deleteBmsCarrierConstructionAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsCreditManagementServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsCreditManagementServiceImpl.java deleted file mode 100644 index bc434a6..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsCreditManagementServiceImpl.java +++ /dev/null @@ -1,188 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsBrandingAward; -import com.ruoyi.jjh.declaration.entity.BmsCreditManagement; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsCreditManagementAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsCreditManagementUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsCreditManagementMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 信用管理奖补Service业务层处理 - * - * @author farben - * @date 2023-09-04 - */ -@Service -public class BmsCreditManagementServiceImpl extends ServiceImpl implements IBmsCreditManagementService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询信用管理奖补 - * - * @param id 信用管理奖补主键 - * @return 信用管理奖补 - */ - @Override - public BmsCreditManagement selectBmsCreditManagementById(Long id) { - return baseMapper.selectBmsCreditManagementById(id); - } - - /** - * 查询信用管理奖补列表 - * - * @param bmsCreditManagement 信用管理奖补 - * @return 信用管理奖补 - */ - @Override - public List selectBmsCreditManagementList(BmsCreditManagement bmsCreditManagement) { - return baseMapper.selectBmsCreditManagementList(bmsCreditManagement); - } - - /** - * 新增信用管理奖补 - * - * @param bmsCreditManagementAddDto 信用管理奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsCreditManagement(BmsCreditManagementAddDto bmsCreditManagementAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsCreditManagementAddDto.getTyshxydm() - ,bmsCreditManagementAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsCreditManagementAddDto.getTyshxydm() - ,bmsCreditManagementAddDto.getTemplateRecordId()); - BmsCreditManagement bmsCreditManagement = new BmsCreditManagement(); - BeanUtil.copyProperties(bmsCreditManagementAddDto,bmsCreditManagement); - bmsCreditManagement.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsCreditManagement); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交信用管理奖补申请"); - declarationRecords.setDetailId(bmsCreditManagement.getId()); - declarationRecords.setId(bmsCreditManagementAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsCreditManagementAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsCreditManagementAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsCreditManagement)); - addProject.setFileJson("{" + - '"' + "项目方案" + '"' + ":" + '"' + bmsCreditManagement.getProjectPlan() + '"' + ","+ - '"' + "资金使用说明" + '"' + ":" + '"' + bmsCreditManagement.getUsesFunds() + '"' + ","+ - '"' + "项目专项审计报告" + '"' + ":" + '"' + bmsCreditManagement.getAuditReport() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改信用管理奖补 - * - * @param bmsCreditManagementUpdateDto 信用管理奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsCreditManagement(BmsCreditManagementUpdateDto bmsCreditManagementUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsCreditManagementUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsCreditManagementUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsCreditManagementUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num = baseMapper.updateBmsCreditManagement(bmsCreditManagementUpdateDto); - // 申请审批 - if (bmsCreditManagementUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsCreditManagement bmsCreditManagement =new BmsCreditManagement(); - BeanUtil.copyProperties(bmsCreditManagementUpdateDto, bmsCreditManagement); - jP.setId(iBmsDeclarationRecordsService.getById(bmsCreditManagementUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(bmsCreditManagement)); - jP.setFileJson("{" + - '"' + "项目方案" + '"' + ":" + '"' + bmsCreditManagement.getProjectPlan() + '"' + ","+ - '"' + "资金使用说明" + '"' + ":" + '"' + bmsCreditManagement.getUsesFunds() + '"' + ","+ - '"' + "项目专项审计报告" + '"' + ":" + '"' + bmsCreditManagement.getAuditReport() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsCreditManagementUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除信用管理奖补 - * - * @param ids 需要删除的信用管理奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsCreditManagementByIds(Long[] ids) { - return baseMapper.deleteBmsCreditManagementByIds(ids); - } - - /** - * 删除信用管理奖补信息 - * - * @param id 信用管理奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsCreditManagementById(Long id) { - return baseMapper.deleteBmsCreditManagementById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFieldInfoServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFieldInfoServiceImpl.java deleted file mode 100644 index 79eb811..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFieldInfoServiceImpl.java +++ /dev/null @@ -1,89 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsFieldInfo; -import com.ruoyi.jjh.declaration.mapper.BmsFieldInfoMapper; -import com.ruoyi.jjh.declaration.service.IBmsFieldInfoService; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 模板字段填写详情Service业务层处理 - * - * @author farben - * @date 2023-09-04 - */ -@Service -public class BmsFieldInfoServiceImpl extends ServiceImpl implements IBmsFieldInfoService { - - - /** - * 查询模板字段填写详情 - * - * @param id 模板字段填写详情主键 - * @return 模板字段填写详情 - */ - @Override - public BmsFieldInfo selectBmsFieldInfoById(Long id) { - return baseMapper.selectBmsFieldInfoById(id); - } - - /** - * 查询模板字段填写详情列表 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 模板字段填写详情 - */ - @Override - public List selectBmsFieldInfoList(BmsFieldInfo bmsFieldInfo) { - return baseMapper.selectBmsFieldInfoList(bmsFieldInfo); - } - - /** - * 新增模板字段填写详情 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 结果 - */ - @Override - public int insertBmsFieldInfo(BmsFieldInfo bmsFieldInfo) { - bmsFieldInfo.setCreateTime(DateUtils.getNowDate()); - return baseMapper.insertBmsFieldInfo(bmsFieldInfo); - } - - /** - * 修改模板字段填写详情 - * - * @param bmsFieldInfo 模板字段填写详情 - * @return 结果 - */ - @Override - public int updateBmsFieldInfo(BmsFieldInfo bmsFieldInfo) { - bmsFieldInfo.setUpdateTime(DateUtils.getNowDate()); - return baseMapper.updateBmsFieldInfo(bmsFieldInfo); - } - - /** - * 批量删除模板字段填写详情 - * - * @param ids 需要删除的模板字段填写详情主键 - * @return 结果 - */ - @Override - public int deleteBmsFieldInfoByIds(Long[] ids) { - return baseMapper.deleteBmsFieldInfoByIds(ids); - } - - /** - * 删除模板字段填写详情信息 - * - * @param id 模板字段填写详情主键 - * @return 结果 - */ - @Override - public int deleteBmsFieldInfoById(Long id) { - return baseMapper.deleteBmsFieldInfoById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFileInfoServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFileInfoServiceImpl.java deleted file mode 100644 index 1dc753c..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFileInfoServiceImpl.java +++ /dev/null @@ -1,89 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsFileInfo; -import com.ruoyi.jjh.declaration.mapper.BmsFileInfoMapper; -import com.ruoyi.jjh.declaration.service.IBmsFileInfoService; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 文件存储说明详情Service业务层处理 - * - * @author farben - * @date 2023-09-04 - */ -@Service -public class BmsFileInfoServiceImpl extends ServiceImpl implements IBmsFileInfoService { - - - /** - * 查询文件存储说明详情 - * - * @param id 文件存储说明详情主键 - * @return 文件存储说明详情 - */ - @Override - public BmsFileInfo selectBmsFileInfoById(Long id) { - return baseMapper.selectBmsFileInfoById(id); - } - - /** - * 查询文件存储说明详情列表 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 文件存储说明详情 - */ - @Override - public List selectBmsFileInfoList(BmsFileInfo bmsFileInfo) { - return baseMapper.selectBmsFileInfoList(bmsFileInfo); - } - - /** - * 新增文件存储说明详情 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 结果 - */ - @Override - public int insertBmsFileInfo(BmsFileInfo bmsFileInfo) { - bmsFileInfo.setCreateTime(DateUtils.getNowDate()); - return baseMapper.insertBmsFileInfo(bmsFileInfo); - } - - /** - * 修改文件存储说明详情 - * - * @param bmsFileInfo 文件存储说明详情 - * @return 结果 - */ - @Override - public int updateBmsFileInfo(BmsFileInfo bmsFileInfo) { - bmsFileInfo.setUpdateTime(DateUtils.getNowDate()); - return baseMapper.updateBmsFileInfo(bmsFileInfo); - } - - /** - * 批量删除文件存储说明详情 - * - * @param ids 需要删除的文件存储说明详情主键 - * @return 结果 - */ - @Override - public int deleteBmsFileInfoByIds(Long[] ids) { - return baseMapper.deleteBmsFileInfoByIds(ids); - } - - /** - * 删除文件存储说明详情信息 - * - * @param id 文件存储说明详情主键 - * @return 结果 - */ - @Override - public int deleteBmsFileInfoById(Long id) { - return baseMapper.deleteBmsFileInfoById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFundingDetailServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFundingDetailServiceImpl.java deleted file mode 100644 index 98b6e6e..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsFundingDetailServiceImpl.java +++ /dev/null @@ -1,89 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsFundingDetail; -import com.ruoyi.jjh.declaration.mapper.BmsFundingDetailMapper; -import com.ruoyi.jjh.declaration.service.IBmsFundingDetailService; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 资金信息详情Service业务层处理 - * - * @author farben - * @date 2023-09-04 - */ -@Service -public class BmsFundingDetailServiceImpl extends ServiceImpl implements IBmsFundingDetailService { - - - /** - * 查询资金信息详情 - * - * @param id 资金信息详情主键 - * @return 资金信息详情 - */ - @Override - public BmsFundingDetail selectBmsFundingDetailById(Long id) { - return baseMapper.selectBmsFundingDetailById(id); - } - - /** - * 查询资金信息详情列表 - * - * @param bmsFundingDetail 资金信息详情 - * @return 资金信息详情 - */ - @Override - public List selectBmsFundingDetailList(BmsFundingDetail bmsFundingDetail) { - return baseMapper.selectBmsFundingDetailList(bmsFundingDetail); - } - - /** - * 新增资金信息详情 - * - * @param bmsFundingDetail 资金信息详情 - * @return 结果 - */ - @Override - public int insertBmsFundingDetail(BmsFundingDetail bmsFundingDetail) { - bmsFundingDetail.setCreateTime(DateUtils.getNowDate()); - return baseMapper.insertBmsFundingDetail(bmsFundingDetail); - } - - /** - * 修改资金信息详情 - * - * @param bmsFundingDetail 资金信息详情 - * @return 结果 - */ - @Override - public int updateBmsFundingDetail(BmsFundingDetail bmsFundingDetail) { - bmsFundingDetail.setUpdateTime(DateUtils.getNowDate()); - return baseMapper.updateBmsFundingDetail(bmsFundingDetail); - } - - /** - * 批量删除资金信息详情 - * - * @param ids 需要删除的资金信息详情主键 - * @return 结果 - */ - @Override - public int deleteBmsFundingDetailByIds(Long[] ids) { - return baseMapper.deleteBmsFundingDetailByIds(ids); - } - - /** - * 删除资金信息详情信息 - * - * @param id 资金信息详情主键 - * @return 结果 - */ - @Override - public int deleteBmsFundingDetailById(Long id) { - return baseMapper.deleteBmsFundingDetailById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsIndustrialInternetAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsIndustrialInternetAwardServiceImpl.java deleted file mode 100644 index 1b1e948..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsIndustrialInternetAwardServiceImpl.java +++ /dev/null @@ -1,186 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsBrandingAward; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsIndustrialInternetAward; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsIndustrialInternetAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsIndustrialInternetAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsIndustrialInternetAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 5G+工业互联网奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsIndustrialInternetAwardServiceImpl extends ServiceImpl implements IBmsIndustrialInternetAwardService { - - @Autowired - private ICommonService iCommonService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询5G+工业互联网奖补 - * - * @param id 5G+工业互联网奖补主键 - * @return 5G+工业互联网奖补 - */ - @Override - public BmsIndustrialInternetAward selectBmsIndustrialInternetAwardById(Long id) { - return baseMapper.selectBmsIndustrialInternetAwardById(id); - } - - /** - * 查询5G+工业互联网奖补列表 - * - * @param bmsIndustrialInternetAward 5G+工业互联网奖补 - * @return 5G+工业互联网奖补 - */ - @Override - public List selectBmsIndustrialInternetAwardList(BmsIndustrialInternetAward bmsIndustrialInternetAward) { - return baseMapper.selectBmsIndustrialInternetAwardList(bmsIndustrialInternetAward); - } - - /** - * 新增5G+工业互联网奖补 - * - * @param bmsIndustrialInternetAwardAddDto 5G+工业互联网奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsIndustrialInternetAward(BmsIndustrialInternetAwardAddDto bmsIndustrialInternetAwardAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsIndustrialInternetAwardAddDto.getTyshxydm() - ,bmsIndustrialInternetAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsIndustrialInternetAwardAddDto.getTyshxydm() - ,bmsIndustrialInternetAwardAddDto.getTemplateRecordId()); - BmsIndustrialInternetAward bmsIndustrialInternetAward = new BmsIndustrialInternetAward(); - BeanUtil.copyProperties(bmsIndustrialInternetAwardAddDto,bmsIndustrialInternetAward); - bmsIndustrialInternetAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsIndustrialInternetAward); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交5G+工业互联网奖补申请"); - declarationRecords.setDetailId(bmsIndustrialInternetAward.getId()); - declarationRecords.setId(bmsIndustrialInternetAwardAddDto.getDeclarationId()); - - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsIndustrialInternetAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsIndustrialInternetAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsIndustrialInternetAward)); - addProject.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + bmsIndustrialInternetAward.getMaterial() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - - - /** - * 修改5G+工业互联网奖补 - * - * @param bmsIndustrialInternetAwardUpdateDto 5G+工业互联网奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsIndustrialInternetAward(BmsIndustrialInternetAwardUpdateDto bmsIndustrialInternetAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsIndustrialInternetAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsIndustrialInternetAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsIndustrialInternetAwardUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num = baseMapper.updateBmsIndustrialInternetAward(bmsIndustrialInternetAwardUpdateDto); - // 申请审批 - if (bmsIndustrialInternetAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsIndustrialInternetAward bs =new BmsIndustrialInternetAward(); - BeanUtil.copyProperties(bmsIndustrialInternetAwardUpdateDto, bs); - jP.setId(iBmsDeclarationRecordsService.getById(bmsIndustrialInternetAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(bs)); - jP.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + bs.getMaterial() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsIndustrialInternetAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除5G+工业互联网奖补 - * - * @param ids 需要删除的5G+工业互联网奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsIndustrialInternetAwardByIds(Long[] ids) { - return baseMapper.deleteBmsIndustrialInternetAwardByIds(ids); - } - - /** - * 删除5G+工业互联网奖补信息 - * - * @param id 5G+工业互联网奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsIndustrialInternetAwardById(Long id) { - return baseMapper.deleteBmsIndustrialInternetAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsIntegrationIndustriesServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsIntegrationIndustriesServiceImpl.java deleted file mode 100644 index 6e4aac1..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsIntegrationIndustriesServiceImpl.java +++ /dev/null @@ -1,202 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.*; -import com.ruoyi.jjh.declaration.entity.dto.BmsIntegrationIndustriesAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsIntegrationIndustriesUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsIntegrationIndustriesMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 两业融合奖补Service业务层处理 - * - * @author farben - * @date 2023-09-04 - */ -@Service -public class BmsIntegrationIndustriesServiceImpl extends ServiceImpl implements IBmsIntegrationIndustriesService { - - @Autowired - private ICommonService iCommonService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询两业融合奖补 - * - * @param id 两业融合奖补主键 - * @return 两业融合奖补 - */ - @Override - public BmsIntegrationIndustries selectBmsIntegrationIndustriesById(Long id) { - return baseMapper.selectBmsIntegrationIndustriesById(id); - } - - /** - * 查询两业融合奖补列表 - * - * @param bmsIntegrationIndustries 两业融合奖补 - * @return 两业融合奖补 - */ - @Override - public List selectBmsIntegrationIndustriesList(BmsIntegrationIndustries bmsIntegrationIndustries) { - return baseMapper.selectBmsIntegrationIndustriesList(bmsIntegrationIndustries); - } - - /** - * 新增两业融合奖补 - * - * @param bmsIntegrationIndustriesAddDto 两业融合奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsIntegrationIndustries(BmsIntegrationIndustriesAddDto bmsIntegrationIndustriesAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsIntegrationIndustriesAddDto.getTyshxydm() - ,bmsIntegrationIndustriesAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsIntegrationIndustriesAddDto.getTyshxydm() - ,bmsIntegrationIndustriesAddDto.getTemplateRecordId()); - BmsIntegrationIndustries bmsIntegrationIndustries = new BmsIntegrationIndustries(); - BeanUtil.copyProperties(bmsIntegrationIndustriesAddDto,bmsIntegrationIndustries); - bmsIntegrationIndustries.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsIntegrationIndustries); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交两业融合奖补申请"); - declarationRecords.setDetailId(bmsIntegrationIndustries.getId()); - declarationRecords.setId(bmsIntegrationIndustriesAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsIntegrationIndustriesAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsIntegrationIndustriesAddDto.getDeclarationId()); - addProject.setStatus(1); - if(bmsIntegrationIndustries.getDeclarationType() == 1){ - bmsIntegrationIndustries.setNewDeclarationType("两业融合示范企业"); - }else if(bmsIntegrationIndustries.getDeclarationType() == 2){ - bmsIntegrationIndustries.setNewDeclarationType("制造业企业设立财务独立核算的制造服务业职能部门"); - }else if(bmsIntegrationIndustries.getDeclarationType() == 3){ - bmsIntegrationIndustries.setNewDeclarationType("制造业企业剥离服务业务成立独立的法人"); - } - addProject.setOtherJson(JSONObject.toJSONString(bmsIntegrationIndustries)); - addProject.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + bmsIntegrationIndustries.getEvidence() + '"' + ","+ - '"' + "营业执照" + '"' + ":" + '"' + bmsIntegrationIndustries.getBusinessLicense() + '"' + ","+ - '"' + "完税证明" + '"' + ":" + '"' + bmsIntegrationIndustries.getTaxPaymentCertificate() + '"' + ","+ - '"' + "审计报告" + '"' + ":" + '"' + bmsIntegrationIndustries.getAuditReport() + '"' + ","+ - '"' + "股权架构图" + '"' + ":" + '"' + bmsIntegrationIndustries.getEquityStructureChart() + '"' + ","+ - '"' + "项目申报报告" + '"' + ":" + '"' + bmsIntegrationIndustries.getDeclarationReport() + '"' + ","+ - '"' + "独立核算相关证明" + '"' + ":" + '"' + bmsIntegrationIndustries.getIndependentAccounting() + '"' + ","+ - '"' + "验资报告" + '"' + ":" + '"' + bmsIntegrationIndustries.getCapitalVerificationReport()+ '"' + ","+ - '"' + "其他证明材料" + '"' + ":" + '"' + bmsIntegrationIndustries.getOtherEvidence() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改两业融合奖补 - * - * @param bmsIntegrationIndustriesUpdateDto 两业融合奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsIntegrationIndustries(BmsIntegrationIndustriesUpdateDto bmsIntegrationIndustriesUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsIntegrationIndustriesUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsIntegrationIndustriesUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsIntegrationIndustriesUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num = baseMapper.updateBmsIntegrationIndustries(bmsIntegrationIndustriesUpdateDto); - // 申请审批 - if (bmsIntegrationIndustriesUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsIntegrationIndustries p1 =new BmsIntegrationIndustries(); - BeanUtil.copyProperties(bmsIntegrationIndustriesUpdateDto, p1); - jP.setId(iBmsDeclarationRecordsService.getById(bmsIntegrationIndustriesUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(p1)); - jP.setFileJson("{" + - '"' + "证明材料" + '"' + ":" + '"' + p1.getEvidence() + '"' + ","+ - '"' + "营业执照" + '"' + ":" + '"' + p1.getBusinessLicense() + '"' + ","+ - '"' + "完税证明" + '"' + ":" + '"' + p1.getTaxPaymentCertificate() + '"' + ","+ - '"' + "审计报告" + '"' + ":" + '"' + p1.getAuditReport() + '"' + ","+ - '"' + "股权架构图" + '"' + ":" + '"' + p1.getEquityStructureChart() + '"' + ","+ - '"' + "项目申报报告" + '"' + ":" + '"' + p1.getDeclarationReport() + '"' + ","+ - '"' + "独立核算相关证明" + '"' + ":" + '"' + p1.getIndependentAccounting() + '"' + ","+ - '"' + "验资报告" + '"' + ":" + '"' + p1.getCapitalVerificationReport()+ '"' + ","+ - '"' + "其他证明材料" + '"' + ":" + '"' + p1.getOtherEvidence() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsIntegrationIndustriesUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - bmsIntegrationIndustriesUpdateDto.setUpdateTime(DateUtils.getNowDate()); - return num; - } - - /** - * 批量删除两业融合奖补 - * - * @param ids 需要删除的两业融合奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsIntegrationIndustriesByIds(Long[] ids) { - return baseMapper.deleteBmsIntegrationIndustriesByIds(ids); - } - - /** - * 删除两业融合奖补信息 - * - * @param id 两业融合奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsIntegrationIndustriesById(Long id) { - return baseMapper.deleteBmsIntegrationIndustriesById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsLogisticsDevelopmentAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsLogisticsDevelopmentAwardServiceImpl.java deleted file mode 100644 index 3fad1de..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsLogisticsDevelopmentAwardServiceImpl.java +++ /dev/null @@ -1,192 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsIntegrationIndustries; -import com.ruoyi.jjh.declaration.entity.BmsLogisticsDevelopmentAward; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsLogisticsDevelopmentAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsLogisticsDevelopmentAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsLogisticsDevelopmentAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 物流发展奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsLogisticsDevelopmentAwardServiceImpl extends ServiceImpl implements IBmsLogisticsDevelopmentAwardService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - - @Autowired - - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询物流发展奖补 - * - * @param id 物流发展奖补主键 - * @return 物流发展奖补 - */ - @Override - public BmsLogisticsDevelopmentAward selectBmsLogisticsDevelopmentAwardById(Long id) { - return baseMapper.selectBmsLogisticsDevelopmentAwardById(id); - } - - /** - * 查询物流发展奖补列表 - * - * @param bmsLogisticsDevelopmentAward 物流发展奖补 - * @return 物流发展奖补 - */ - @Override - public List selectBmsLogisticsDevelopmentAwardList(BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward) { - return baseMapper.selectBmsLogisticsDevelopmentAwardList(bmsLogisticsDevelopmentAward); - } - - /** - * 新增物流发展奖补 - * - * @param bmsLogisticsDevelopmentAwardAddDto 物流发展奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsLogisticsDevelopmentAward(BmsLogisticsDevelopmentAwardAddDto bmsLogisticsDevelopmentAwardAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsLogisticsDevelopmentAwardAddDto.getTyshxydm() - ,bmsLogisticsDevelopmentAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsLogisticsDevelopmentAwardAddDto.getTyshxydm() - ,bmsLogisticsDevelopmentAwardAddDto.getTemplateRecordId()); - BmsLogisticsDevelopmentAward bmsLogisticsDevelopmentAward = new BmsLogisticsDevelopmentAward(); - - BeanUtil.copyProperties(bmsLogisticsDevelopmentAwardAddDto,bmsLogisticsDevelopmentAward); - bmsLogisticsDevelopmentAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsLogisticsDevelopmentAward); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交物流发展奖补申请"); - declarationRecords.setId(bmsLogisticsDevelopmentAwardAddDto.getDeclarationId()); - declarationRecords.setDetailId(bmsLogisticsDevelopmentAward.getId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsLogisticsDevelopmentAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsLogisticsDevelopmentAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsLogisticsDevelopmentAward)); - addProject.setFileJson( "{" + - '"' + "荣誉证明文件" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getHonorCertificate() + '"' + ","+ - '"' + "平台名称" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getPlatformName() + '"' + ","+ - '"' + "企业投资项目备案通知书或核准批复文件" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getFilingNotice() + '"' + ","+ - '"' + "会计师事务所出具的企业财务报表审计报告" + '"' + ":" + '"' + bmsLogisticsDevelopmentAward.getAuditReport() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改物流发展奖补 - * - * @param bmsLogisticsDevelopmentAwardUpdateDto 物流发展奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsLogisticsDevelopmentAward(BmsLogisticsDevelopmentAwardUpdateDto bmsLogisticsDevelopmentAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsLogisticsDevelopmentAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsLogisticsDevelopmentAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - num = baseMapper.updateBmsLogisticsDevelopmentAward(bmsLogisticsDevelopmentAwardUpdateDto); - // 申请审批 - if (bmsLogisticsDevelopmentAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsLogisticsDevelopmentAward p1 =new BmsLogisticsDevelopmentAward(); - BeanUtil.copyProperties(bmsLogisticsDevelopmentAwardUpdateDto, p1); - jP.setId(iBmsDeclarationRecordsService.getById(bmsLogisticsDevelopmentAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(p1)); - jP.setFileJson( "{" + - '"' + "荣誉证明文件" + '"' + ":" + '"' + p1.getHonorCertificate() + '"' + ","+ - '"' + "平台名称" + '"' + ":" + '"' + p1.getPlatformName() + '"' + ","+ - '"' + "企业投资项目备案通知书或核准批复文件" + '"' + ":" + '"' + p1.getFilingNotice() + '"' + ","+ - '"' + "会计师事务所出具的企业财务报表审计报告" + '"' + ":" + '"' + p1.getAuditReport() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsLogisticsDevelopmentAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除物流发展奖补 - * - * @param ids 需要删除的物流发展奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsLogisticsDevelopmentAwardByIds(Long[] ids) { - return baseMapper.deleteBmsLogisticsDevelopmentAwardByIds(ids); - } - - /** - * 删除物流发展奖补信息 - * - * @param id 物流发展奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsLogisticsDevelopmentAwardById(Long id) { - return baseMapper.deleteBmsLogisticsDevelopmentAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsManufacturingServicesAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsManufacturingServicesAwardServiceImpl.java deleted file mode 100644 index 3c230bb..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsManufacturingServicesAwardServiceImpl.java +++ /dev/null @@ -1,189 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsLogisticsDevelopmentAward; -import com.ruoyi.jjh.declaration.entity.BmsManufacturingServicesAward; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsManufacturingServicesAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsManufacturingServicesAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsManufacturingServicesAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 制造服务业有效投入奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsManufacturingServicesAwardServiceImpl extends ServiceImpl implements IBmsManufacturingServicesAwardService { - - @Autowired - private ICommonService iCommonService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询制造服务业有效投入奖补 - * - * @param id 制造服务业有效投入奖补主键 - * @return 制造服务业有效投入奖补 - */ - @Override - public BmsManufacturingServicesAward selectBmsManufacturingServicesAwardById(Long id) { - return baseMapper.selectBmsManufacturingServicesAwardById(id); - } - - /** - * 查询制造服务业有效投入奖补列表 - * - * @param bmsManufacturingServicesAward 制造服务业有效投入奖补 - * @return 制造服务业有效投入奖补 - */ - @Override - public List selectBmsManufacturingServicesAwardList(BmsManufacturingServicesAward bmsManufacturingServicesAward) { - return baseMapper.selectBmsManufacturingServicesAwardList(bmsManufacturingServicesAward); - } - - /** - * 新增制造服务业有效投入奖补 - * - * @param bmsManufacturingServicesAwardAddDto 制造服务业有效投入奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsManufacturingServicesAward(BmsManufacturingServicesAwardAddDto bmsManufacturingServicesAwardAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsManufacturingServicesAwardAddDto.getTyshxydm() - ,bmsManufacturingServicesAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsManufacturingServicesAwardAddDto.getTyshxydm() - ,bmsManufacturingServicesAwardAddDto.getTemplateRecordId()); - BmsManufacturingServicesAward bmsManufacturingServicesAward = new BmsManufacturingServicesAward(); - BeanUtil.copyProperties(bmsManufacturingServicesAwardAddDto,bmsManufacturingServicesAward); - bmsManufacturingServicesAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsManufacturingServicesAward); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交制造服务业有效投入奖补申请"); - declarationRecords.setDetailId(bmsManufacturingServicesAward.getId()); - declarationRecords.setId(bmsManufacturingServicesAwardAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsManufacturingServicesAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //新增项目 - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsManufacturingServicesAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsManufacturingServicesAward)); - addProject.setFileJson( "{" + - '"' + "企业投资项目备案通知书或核准批复文件" + '"' + ":" + '"' + bmsManufacturingServicesAward.getFilingNotice() + '"' + ","+ - '"' + "购置设备发票清单及发票扫描件" + '"' + ":" + '"' + bmsManufacturingServicesAward.getInvoice() + '"' + ","+ - '"' + "会计师事务所出具的企业申报项目购置设备情况的专项审计报告" + '"' + ":" + '"' + bmsManufacturingServicesAward.getAuditReport() + '"' + ","+ - '"' + "会计师事务所出具的企业财务报表审计报告" + '"' + ":" + '"' + bmsManufacturingServicesAward.getFinancialStatements() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改制造服务业有效投入奖补 - * - * @param bmsManufacturingServicesAwardUpdateDto 制造服务业有效投入奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsManufacturingServicesAward(BmsManufacturingServicesAwardUpdateDto bmsManufacturingServicesAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsManufacturingServicesAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsManufacturingServicesAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsManufacturingServicesAwardUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num = baseMapper.updateBmsManufacturingServicesAward(bmsManufacturingServicesAwardUpdateDto); - // 申请审批 - if (bmsManufacturingServicesAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsManufacturingServicesAward p1 =new BmsManufacturingServicesAward(); - BeanUtil.copyProperties(bmsManufacturingServicesAwardUpdateDto, p1); - jP.setId(iBmsDeclarationRecordsService.getById(bmsManufacturingServicesAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(p1)); - jP.setFileJson( "{" + - '"' + "企业投资项目备案通知书或核准批复文件" + '"' + ":" + '"' + p1.getFilingNotice() + '"' + ","+ - '"' + "购置设备发票清单及发票扫描件" + '"' + ":" + '"' + p1.getInvoice() + '"' + ","+ - '"' + "会计师事务所出具的企业申报项目购置设备情况的专项审计报告" + '"' + ":" + '"' + p1.getAuditReport() + '"' + ","+ - '"' + "会计师事务所出具的企业财务报表审计报告" + '"' + ":" + '"' + p1.getFinancialStatements() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsManufacturingServicesAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除制造服务业有效投入奖补 - * - * @param ids 需要删除的制造服务业有效投入奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsManufacturingServicesAwardByIds(Long[] ids) { - return baseMapper.deleteBmsManufacturingServicesAwardByIds(ids); - } - - /** - * 删除制造服务业有效投入奖补信息 - * - * @param id 制造服务业有效投入奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsManufacturingServicesAwardById(Long id) { - return baseMapper.deleteBmsManufacturingServicesAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsOutQuitProductsServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsOutQuitProductsServiceImpl.java deleted file mode 100644 index c70ef48..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsOutQuitProductsServiceImpl.java +++ /dev/null @@ -1,179 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.*; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsBigStrongAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsOutQuitProductsAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsOutQuitProductsUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsOutQuitProductsMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import javax.annotation.Resource; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 2024年度淘汰落后和退出低端低效产能装备清单Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsOutQuitProductsServiceImpl extends ServiceImpl implements IBmsOutQuitProductsService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询2024年度淘汰落后和退出低端低效产能装备清单列表 - * - * @param bmsOutQuitProducts 详情 - * @return 详情集合 - */ - @Override - public List selectBmsOutQuitProductsList(BmsOutQuitProducts bmsOutQuitProducts) { - return baseMapper.selectBmsOutQuitProductsList(bmsOutQuitProducts); - } - - /** - * 新增2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param bmsOutQuitProductsAddDto 详情 - * @return 结果 - */ - @Override - public int insertBmsOutQuitProducts(BmsOutQuitProductsAddDto bmsOutQuitProductsAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsOutQuitProductsAddDto.getTyshxydm() - ,bmsOutQuitProductsAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsOutQuitProductsAddDto.getTyshxydm() - ,bmsOutQuitProductsAddDto.getTemplateRecordId()); - - BmsOutQuitProducts products = new BmsOutQuitProducts(); - BeanUtil.copyProperties(bmsOutQuitProductsAddDto,products); - products.setEnterpriseId(enterpriseId); - int num = baseMapper.insert(products); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交2024年度淘汰落后和退出低端低效产能装备清单"); - declarationRecords.setDetailId(products.getId()); - declarationRecords.setId(bmsOutQuitProductsAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsOutQuitProductsAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsOutQuitProductsAddDto.getDeclarationId()); - addProject.setStatus(1); - - if(products.getIndustry() == 1){ - products.setNewIndustry("轻工"); - }else if(products.getIndustry() == 2){ - products.setNewIndustry("纺织"); - }else if(products.getIndustry() == 3){ - products.setNewIndustry("冶金"); - }else if(products.getIndustry() == 4){ - products.setNewIndustry("化工"); - }else if(products.getIndustry() == 5){ - products.setNewIndustry("建材"); - }else if(products.getIndustry() == 6){ - products.setNewIndustry("机械加工"); - } - if(products.getType() == 1){ - products.setNewType("淘汰落后生产工艺装备"); - }else{ - products.setNewType("退出低端低效生产工艺装备"); - } - addProject.setOtherJson(JSONObject.toJSONString(products)); - addProject.setFileJson( "{" + - '"' + "拟淘汰或退出生产工艺装备情况" + '"' + ":" + '"' + products.getSpecifics() + '"' + "," + - '"' + "其他相关情况说明" + '"' + ":" + '"' + products.getOtherSpecifics() + '"'+ - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - @Override - public int updateBmsOutQuitProducts(BmsOutQuitProductsUpdateDto bmsOutQuitProductsUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsOutQuitProductsUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsOutQuitProductsUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - num = baseMapper.updateById(bmsOutQuitProductsUpdateDto); - // 申请审批 - if (bmsOutQuitProductsUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsOutQuitProducts p1 =new BmsOutQuitProducts(); - BeanUtil.copyProperties(bmsOutQuitProductsUpdateDto, p1); - jP.setId(iBmsDeclarationRecordsService.getById(bmsOutQuitProductsUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(p1)); - jP.setFileJson("{" + - '"' + "拟淘汰或退出生产工艺装备情况" + '"' + ":" + '"' + p1.getSpecifics() + '"' + "," + - '"' + "其他相关情况说明" + '"' + ":" + '"' + p1.getOtherSpecifics() + '"'+ - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsOutQuitProductsUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - /** - * 批量删除2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param ids 主键集合 - * @return 结果 - */ - @Override - public int deleteBmsOutQuitProductsByIds(Long[] ids) { - return baseMapper.deleteBmsOutQuitProductsByIds(ids); - } - - /** - * 删除2024年度淘汰落后和退出低端低效产能装备清单 - * - * @param id 详情主键 - * @return 结果 - */ - @Override - public int deleteBmsOutQuitProductsById(Long id) { - return baseMapper.deleteBmsOutQuitProductsById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsPlatformConstructionAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsPlatformConstructionAwardServiceImpl.java deleted file mode 100644 index 88051a8..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsPlatformConstructionAwardServiceImpl.java +++ /dev/null @@ -1,181 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.*; -import com.ruoyi.jjh.declaration.entity.dto.BmsPlatformConstructionAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsPlatformConstructionAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsPlatformConstructionAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Lazy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 平台建设奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -@Lazy -public class BmsPlatformConstructionAwardServiceImpl extends ServiceImpl implements IBmsPlatformConstructionAwardService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询平台建设奖补 - * - * @param id 平台建设奖补主键 - * @return 平台建设奖补 - */ - @Override - public BmsPlatformConstructionAward selectBmsPlatformConstructionAwardById(Long id) { - return baseMapper.selectBmsPlatformConstructionAwardById(id); - } - - /** - * 查询平台建设奖补列表 - * - * @param bmsPlatformConstructionAward 平台建设奖补 - * @return 平台建设奖补 - */ - @Override - public List selectBmsPlatformConstructionAwardList(BmsPlatformConstructionAward bmsPlatformConstructionAward) { - return baseMapper.selectBmsPlatformConstructionAwardList(bmsPlatformConstructionAward); - } - - /** - * 新增平台建设奖补 - * - * @param bmsPlatformConstructionAwardAddDto 平台建设奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsPlatformConstructionAward(BmsPlatformConstructionAwardAddDto bmsPlatformConstructionAwardAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsPlatformConstructionAwardAddDto.getTyshxydm() - ,bmsPlatformConstructionAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsPlatformConstructionAwardAddDto.getTyshxydm() - ,bmsPlatformConstructionAwardAddDto.getTemplateRecordId()); - BmsPlatformConstructionAward bmsPlatformConstructionAward = new BmsPlatformConstructionAward(); - BeanUtil.copyProperties(bmsPlatformConstructionAwardAddDto,bmsPlatformConstructionAward); - bmsPlatformConstructionAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsPlatformConstructionAward); - - // 新增申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交平台建设奖补申请"); - declarationRecords.setId(bmsPlatformConstructionAwardAddDto.getDeclarationId()); - declarationRecords.setDetailId(bmsPlatformConstructionAward.getId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsPlatformConstructionAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsPlatformConstructionAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - addProject.setOtherJson(JSONObject.toJSONString(bmsPlatformConstructionAward)); - addProject.setFileJson( "{" + - '"' + "合作协议" + '"' + ":" + '"' + bmsPlatformConstructionAward.getAgreement() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - - /** - * 修改平台建设奖补 - * - * @param bmsPlatformConstructionAwardUpdateDto 平台建设奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsPlatformConstructionAward(BmsPlatformConstructionAwardUpdateDto bmsPlatformConstructionAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsPlatformConstructionAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsPlatformConstructionAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - num = baseMapper.updateBmsPlatformConstructionAward(bmsPlatformConstructionAwardUpdateDto); - // 申请审批 - if (bmsPlatformConstructionAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsPlatformConstructionAward p1 =new BmsPlatformConstructionAward(); - BeanUtil.copyProperties(bmsPlatformConstructionAwardUpdateDto, p1); - jP.setId(iBmsDeclarationRecordsService.getById(bmsPlatformConstructionAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(p1)); - jP.setFileJson("{" + - '"' + "合作协议" + '"' + ":" + '"' + p1.getAgreement() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsPlatformConstructionAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除平台建设奖补 - * - * @param ids 需要删除的平台建设奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsPlatformConstructionAwardByIds(Long[] ids) { - return baseMapper.deleteBmsPlatformConstructionAwardByIds(ids); - } - - /** - * 删除平台建设奖补信息 - * - * @param id 平台建设奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsPlatformConstructionAwardById(Long id) { - return baseMapper.deleteBmsPlatformConstructionAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsProjectInfoServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsProjectInfoServiceImpl.java deleted file mode 100644 index 9f20f22..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsProjectInfoServiceImpl.java +++ /dev/null @@ -1,94 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsProjectInfo; -import com.ruoyi.jjh.declaration.mapper.BmsProjectInfoMapper; -import com.ruoyi.jjh.declaration.service.IBmsProjectInfoService; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 项目基本信息Service业务层处理 - * - * @author farben - * @date 2023-09-09 - */ -@Service -public class BmsProjectInfoServiceImpl extends ServiceImpl implements IBmsProjectInfoService { - - - /** - * 查询项目基本信息 - * - * @param id 项目基本信息主键 - * @return 项目基本信息 - */ - @Override - public BmsProjectInfo selectBmsProjectInfoById(Long id) { - return baseMapper.selectBmsProjectInfoById(id); - } - - /** - * 查询项目基本信息列表 - * - * @param bmsProjectInfo 项目基本信息 - * @return 项目基本信息 - */ - @Override - public List selectBmsProjectInfoList(BmsProjectInfo bmsProjectInfo) { - return baseMapper.selectBmsProjectInfoList(bmsProjectInfo); - } - - /** - * 新增项目基本信息 - * - * @param bmsProjectInfo 项目基本信息 - * @return 结果 - */ - @Override - public int insertBmsProjectInfo(BmsProjectInfo bmsProjectInfo) { - bmsProjectInfo.setCreateTime(DateUtils.getNowDate()); - return baseMapper.insertBmsProjectInfo(bmsProjectInfo); - } - - /** - * 修改项目基本信息 - * - * @param bmsProjectInfo 项目基本信息 - * @return 结果 - */ - @Override - public int updateBmsProjectInfo(BmsProjectInfo bmsProjectInfo) { - bmsProjectInfo.setUpdateTime(DateUtils.getNowDate()); - return baseMapper.updateBmsProjectInfo(bmsProjectInfo); - } - - /** - * 批量删除项目基本信息 - * - * @param ids 需要删除的项目基本信息主键 - * @return 结果 - */ - @Override - public int deleteBmsProjectInfoByIds(Long[] ids) { - return baseMapper.deleteBmsProjectInfoByIds(ids); - } - - /** - * 删除项目基本信息信息 - * - * @param id 项目基本信息主键 - * @return 结果 - */ - @Override - public int deleteBmsProjectInfoById(Long id) { - return baseMapper.deleteBmsProjectInfoById(id); - } - - @Override - public BmsProjectInfo getProjectInfo(Long templateRecordId){ - return baseMapper.getProjectInfo(templateRecordId); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsProjectSettlementAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsProjectSettlementAwardServiceImpl.java deleted file mode 100644 index bad8f78..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsProjectSettlementAwardServiceImpl.java +++ /dev/null @@ -1,218 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.jjh.declaration.entity.*; -import com.ruoyi.jjh.declaration.entity.dto.BmsFundingDetailAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsProjectSettlementAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsProjectSettlementAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsApprovalInfoQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.BmsDeclarationRecordsQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.BmsProjectSettlementAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsProjectSettlementAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import io.swagger.annotations.ApiModelProperty; -import org.apache.poi.ss.formula.functions.T; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.Lazy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.lang.reflect.Field; -import java.text.SimpleDateFormat; -import java.time.Year; -import java.util.*; - -/** - * 项目落户奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -@Lazy -public class BmsProjectSettlementAwardServiceImpl extends ServiceImpl implements IBmsProjectSettlementAwardService { - - @Autowired - private ICommonService iCommonService; - - - @Autowired - private IBmsFundingDetailService iBmsFundingDetailService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - @Resource - private JProjectService jProjectService; - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询项目落户奖补 - * - * @param id 项目落户奖补主键 - * @return 项目落户奖补 - */ - @Override - public BmsProjectSettlementAwardQueryVo selectBmsProjectSettlementAwardById(Long id) { - return baseMapper.selectBmsProjectSettlementAwardById(id); - } - - /** - * 查询项目落户奖补列表 - * - * @param bmsProjectSettlementAward 项目落户奖补 - * @return 项目落户奖补 - */ - @Override - public List selectBmsProjectSettlementAwardList(BmsProjectSettlementAward bmsProjectSettlementAward) { - return baseMapper.selectBmsProjectSettlementAwardList(bmsProjectSettlementAward); - } - - /** - * 新增项目落户奖补 - * - * @param bmsProjectSettlementAwardAddDto 项目落户奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsProjectSettlementAward(BmsProjectSettlementAwardAddDto bmsProjectSettlementAwardAddDto) { - - //检测企业信息 - Long enterpriseId = iCommonService.checkEnterprise(bmsProjectSettlementAwardAddDto.getTyshxydm() - , bmsProjectSettlementAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsProjectSettlementAwardAddDto.getTyshxydm() - , bmsProjectSettlementAwardAddDto.getTemplateRecordId()); - BmsProjectSettlementAward projectSettlementAward = new BmsProjectSettlementAward(); - BeanUtil.copyProperties(bmsProjectSettlementAwardAddDto, projectSettlementAward); - projectSettlementAward.setEnterpriseId(enterpriseId); - // 新增项目落户奖补对象 - int num = baseMapper.insert(projectSettlementAward); - List fundingDetailAddList = bmsProjectSettlementAwardAddDto.getFundingDetailList(); - List fundingDetailList = new ArrayList<>(); - fundingDetailAddList.forEach(x -> { - BmsFundingDetail fundingDetail = new BmsFundingDetail(); - BeanUtil.copyProperties(x, fundingDetail); - fundingDetail.setType(1); - fundingDetail.setTemplateRecordId(bmsProjectSettlementAwardAddDto.getTemplateRecordId()); - fundingDetail.setDetailId(projectSettlementAward.getId()); - fundingDetailList.add(fundingDetail); - }); - // 批量新增资金信息 - iBmsFundingDetailService.saveOrUpdateBatch(fundingDetailList); - // 修改申请记录 - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交落户奖补申请"); - declarationRecords.setDetailId(projectSettlementAward.getId()); - declarationRecords.setId(bmsProjectSettlementAwardAddDto.getDeclarationId()); - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsProjectSettlementAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsProjectSettlementAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - String jsonString = jProjectService.getJsonString(fundingDetailList); - JSONObject mergedObj = new JSONObject(); - mergedObj.putAll(JSONObject.parseObject(jsonString)); - mergedObj.putAll(JSONObject.parseObject(JSONObject.toJSONString(projectSettlementAward))); - addProject.setOtherJson(mergedObj.toJSONString()); - addProject.setFileJson("{" + - '"' + "招商协议" + '"' + ":" + '"' + projectSettlementAward.getAgreement() + '"' + "," + - '"' + "验资报告" + '"' + ":" + '"' + projectSettlementAward.getBusinessLicense() + '"' + "," + - '"' + "营业执照" + '"' + ":" + '"' + projectSettlementAward.getOtherMaterials() + '"' + "," + - '"' + "其他证明材料" + '"' + ":" + '"' + projectSettlementAward.getReport() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(), 0); - } - return num; - } - - /** - * 修改项目落户奖补 - * - * @param bmsProjectSettlementAwardUpdateDto 项目落户奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsProjectSettlementAward(BmsProjectSettlementAwardUpdateDto bmsProjectSettlementAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsProjectSettlementAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsProjectSettlementAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - num = baseMapper.updateBmsProjectSettlementAward(bmsProjectSettlementAwardUpdateDto); - List fundingDetailList = bmsProjectSettlementAwardUpdateDto.getFundingDetailList(); - iBmsFundingDetailService.saveOrUpdateBatch(fundingDetailList); - // 申请审批 - if (bmsProjectSettlementAwardUpdateDto.getStatus() == 1) { - JProject jP = new JProject(); - BmsProjectSettlementAward p1 = new BmsProjectSettlementAward(); - BeanUtil.copyProperties(bmsProjectSettlementAwardUpdateDto, p1); - jP.setId(iBmsDeclarationRecordsService.getById(bmsProjectSettlementAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - JSONObject mergedObj = new JSONObject(); - mergedObj.putAll(JSONObject.parseObject(jProjectService.getJsonString(fundingDetailList))); - mergedObj.putAll(JSONObject.parseObject(JSONObject.toJSONString(p1))); - jP.setOtherJson(mergedObj.toJSONString()); - jP.setFileJson("{" + - '"' + "招商协议" + '"' + ":" + '"' + p1.getAgreement() + '"' + "," + - '"' + "验资报告" + '"' + ":" + '"' + p1.getBusinessLicense() + '"' + "," + - '"' + "营业执照" + '"' + ":" + '"' + p1.getOtherMaterials() + '"' + "," + - '"' + "其他证明材料" + '"' + ":" + '"' + p1.getReport() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsProjectSettlementAwardUpdateDto.getDeclarationRecordsId(), 0); - } - } catch (Exception e) { - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除项目落户奖补 - * - * @param ids 需要删除的项目落户奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsProjectSettlementAwardByIds(Long[] ids) { - return baseMapper.deleteBmsProjectSettlementAwardByIds(ids); - } - - /** - * 删除项目落户奖补信息 - * - * @param id 项目落户奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsProjectSettlementAwardById(Long id) { - return baseMapper.deleteBmsProjectSettlementAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsSceneOpeningAwardServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsSceneOpeningAwardServiceImpl.java deleted file mode 100644 index 989ecb7..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BmsSceneOpeningAwardServiceImpl.java +++ /dev/null @@ -1,191 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.bean.BeanUtil; -import com.alibaba.fastjson2.JSONObject; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; -import com.ruoyi.jjh.declaration.entity.BmsIndustrialInternetAward; -import com.ruoyi.jjh.declaration.entity.BmsSceneOpeningAward; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsSceneOpeningAwardAddDto; -import com.ruoyi.jjh.declaration.entity.dto.BmsSceneOpeningAwardUpdateDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; -import com.ruoyi.jjh.declaration.mapper.BmsSceneOpeningAwardMapper; -import com.ruoyi.jjh.declaration.service.*; -import com.ruoyi.jjh.ent.entity.JProject; -import com.ruoyi.jjh.ent.service.JProjectService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import javax.annotation.Resource; -import java.time.Year; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * 场景开放奖补Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BmsSceneOpeningAwardServiceImpl extends ServiceImpl implements IBmsSceneOpeningAwardService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsDeclarationRecordsService iBmsDeclarationRecordsService; - - @Resource - private JProjectService jProjectService; - - @Resource - private IBmsTemplateInfoService iBmsTemplateInfoService; - - @Resource - private IBmsTemplateRecordService iBmsTemplateRecordService; - /** - * 查询场景开放奖补 - * - * @param id 场景开放奖补主键 - * @return 场景开放奖补 - */ - @Override - public BmsSceneOpeningAward selectBmsSceneOpeningAwardById(Long id) { - return baseMapper.selectBmsSceneOpeningAwardById(id); - } - - /** - * 查询场景开放奖补列表 - * - * @param bmsSceneOpeningAward 场景开放奖补 - * @return 场景开放奖补 - */ - @Override - public List selectBmsSceneOpeningAwardList(BmsSceneOpeningAward bmsSceneOpeningAward) { - return baseMapper.selectBmsSceneOpeningAwardList(bmsSceneOpeningAward); - } - - /** - * 新增场景开放奖补 - * - * @param bmsSceneOpeningAwardAddDto 场景开放奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int insertBmsSceneOpeningAward(BmsSceneOpeningAwardAddDto bmsSceneOpeningAwardAddDto) { - Long enterpriseId = iCommonService.checkEnterprise(bmsSceneOpeningAwardAddDto.getTyshxydm() - ,bmsSceneOpeningAwardAddDto.getTemplateRecordId()); - // check 申报信息 - iCommonService.checkDeclaration(bmsSceneOpeningAwardAddDto.getTyshxydm() - ,bmsSceneOpeningAwardAddDto.getTemplateRecordId()); - BmsSceneOpeningAward bmsSceneOpeningAward = new BmsSceneOpeningAward(); - BeanUtil.copyProperties(bmsSceneOpeningAwardAddDto,bmsSceneOpeningAward); - bmsSceneOpeningAward.setEnterpriseId(enterpriseId); - // 新增做大做强奖详情 - int num = baseMapper.insert(bmsSceneOpeningAward); - - - BmsDeclarationRecords declarationRecords = new BmsDeclarationRecords(); - declarationRecords.setMatter("提交场景开放奖补申请"); - declarationRecords.setDetailId(bmsSceneOpeningAward.getId()); - declarationRecords.setId(bmsSceneOpeningAwardAddDto.getDeclarationId()); - - //如果该申报任务是不需要审批的则修改状态为已填报 - BmsTemplateRecord tes = iBmsTemplateRecordService.getById(iBmsDeclarationRecordsService.getById(bmsSceneOpeningAwardAddDto.getDeclarationId()).getTemplateRecordId()); - if(tes.getIsApproval() == 0){ - declarationRecords.setStatus(6L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - }else { - declarationRecords.setStatus(1L); - iBmsDeclarationRecordsService.updateById(declarationRecords); - //获取某个在线记录id可以添加到项目库的数据 - JProject addProject = iBmsDeclarationRecordsService.getAddProject(bmsSceneOpeningAwardAddDto.getDeclarationId()); - addProject.setStatus(1); - if(bmsSceneOpeningAward.getType() == 0){ - bmsSceneOpeningAward.setNewType("市场服务类"); - }else{ - bmsSceneOpeningAward.setNewType("公共服务类"); - } - addProject.setOtherJson(JSONObject.toJSONString(bmsSceneOpeningAward)); - addProject.setFileJson("{" + - '"' + "证明材料(公示、发文证明、专家评分表)" + '"' + ":" + '"' + bmsSceneOpeningAward.getMaterial() + '"' + - "}"); - jProjectService.save(addProject); - declarationRecords.setJjhProjectId(addProject.getId()); - iBmsDeclarationRecordsService.updateById(declarationRecords); - - // 生成审核 - iCommonService.insertAuditRecord(declarationRecords.getId(),0); - } - return num; - } - - /** - * 修改场景开放奖补 - * - * @param bmsSceneOpeningAwardUpdateDto 场景开放奖补 - * @return 结果 - */ - @Override - @Transactional(rollbackFor = Exception.class) - public int updateBmsSceneOpeningAward(BmsSceneOpeningAwardUpdateDto bmsSceneOpeningAwardUpdateDto) { - int num = 0; - try { - BmsDeclarationRecords newRecord = new BmsDeclarationRecords(); - newRecord.setId(bmsSceneOpeningAwardUpdateDto.getDeclarationRecordsId()); - newRecord.setStatus(bmsSceneOpeningAwardUpdateDto.getStatus()); - iBmsDeclarationRecordsService.updateById(newRecord); - - bmsSceneOpeningAwardUpdateDto.setUpdateTime(DateUtils.getNowDate()); - num=baseMapper.updateBmsSceneOpeningAward(bmsSceneOpeningAwardUpdateDto); - // 申请审批 - if (bmsSceneOpeningAwardUpdateDto.getStatus()==1){ - JProject jP = new JProject(); - BmsSceneOpeningAward bs =new BmsSceneOpeningAward(); - BeanUtil.copyProperties(bmsSceneOpeningAwardUpdateDto, bs); - jP.setId(iBmsDeclarationRecordsService.getById(bmsSceneOpeningAwardUpdateDto.getDeclarationRecordsId()).getJjhProjectId()); - jP.setStatus(1); - jP.setOtherJson(JSONObject.toJSONString(bs)); - jP.setFileJson( "{" + - '"' + "证明材料(公示、发文证明、专家评分表)" + '"' + ":" + '"' + bs.getMaterial() + '"' + - "}"); - //修改项目 - jProjectService.updateById(jP); - // 审批状态 - iCommonService.updateAuditRecord(bmsSceneOpeningAwardUpdateDto.getDeclarationRecordsId(), 0); - } - }catch (Exception e){ - e.printStackTrace(); - } - return num; - } - - /** - * 批量删除场景开放奖补 - * - * @param ids 需要删除的场景开放奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsSceneOpeningAwardByIds(Long[] ids) { - return baseMapper.deleteBmsSceneOpeningAwardByIds(ids); - } - - /** - * 删除场景开放奖补信息 - * - * @param id 场景开放奖补主键 - * @return 结果 - */ - @Override - public int deleteBmsSceneOpeningAwardById(Long id) { - return baseMapper.deleteBmsSceneOpeningAwardById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BsmFundingInfoServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BsmFundingInfoServiceImpl.java deleted file mode 100644 index a674288..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/BsmFundingInfoServiceImpl.java +++ /dev/null @@ -1,88 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.ruoyi.common.utils.DateUtils; -import com.ruoyi.jjh.declaration.entity.BsmFundingInfo; -import com.ruoyi.jjh.declaration.mapper.BsmFundingInfoMapper; -import com.ruoyi.jjh.declaration.service.IBsmFundingInfoService; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 资金信息Service业务层处理 - * - * @author farben - * @date 2023-08-25 - */ -@Service -public class BsmFundingInfoServiceImpl extends ServiceImpl implements IBsmFundingInfoService { - - /** - * 查询资金信息 - * - * @param id 资金信息主键 - * @return 资金信息 - */ - @Override - public BsmFundingInfo selectBsmFundingInfoById(Long id) { - return baseMapper.selectBsmFundingInfoById(id); - } - - /** - * 查询资金信息列表 - * - * @param bsmFundingInfo 资金信息 - * @return 资金信息 - */ - @Override - public List selectBsmFundingInfoList(BsmFundingInfo bsmFundingInfo) { - return baseMapper.selectBsmFundingInfoList(bsmFundingInfo); - } - - /** - * 新增资金信息 - * - * @param bsmFundingInfo 资金信息 - * @return 结果 - */ - @Override - public int insertBsmFundingInfo(BsmFundingInfo bsmFundingInfo) { - bsmFundingInfo.setCreateTime(DateUtils.getNowDate()); - return baseMapper.insertBsmFundingInfo(bsmFundingInfo); - } - - /** - * 修改资金信息 - * - * @param bsmFundingInfo 资金信息 - * @return 结果 - */ - @Override - public int updateBsmFundingInfo(BsmFundingInfo bsmFundingInfo) { - bsmFundingInfo.setUpdateTime(DateUtils.getNowDate()); - return baseMapper.updateBsmFundingInfo(bsmFundingInfo); - } - - /** - * 批量删除资金信息 - * - * @param ids 需要删除的资金信息主键 - * @return 结果 - */ - @Override - public int deleteBsmFundingInfoByIds(Long[] ids) { - return baseMapper.deleteBsmFundingInfoByIds(ids); - } - - /** - * 删除资金信息信息 - * - * @param id 资金信息主键 - * @return 结果 - */ - @Override - public int deleteBsmFundingInfoById(Long id) { - return baseMapper.deleteBsmFundingInfoById(id); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/CommonServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/CommonServiceImpl.java index e32d0b6..b9f5d94 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/CommonServiceImpl.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/CommonServiceImpl.java @@ -1,31 +1,18 @@ package com.ruoyi.jjh.declaration.service.impl; import cn.hutool.core.bean.BeanUtil; -import cn.hutool.core.collection.CollectionUtil; import com.baomidou.mybatisplus.core.toolkit.Wrappers; -import com.ruoyi.common.context.SecurityContextHolder; import com.ruoyi.common.exception.ServiceException; -import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.jjh.declaration.entity.BmsApprovalInfo; -import com.ruoyi.jjh.declaration.entity.BmsDeclarationRecords; import com.ruoyi.jjh.declaration.entity.BmsEnterpriseBasicInfo; import com.ruoyi.jjh.declaration.entity.BmsEnterpriseDirectory; -import com.ruoyi.jjh.declaration.entity.BmsFundingDetail; -import com.ruoyi.jjh.declaration.entity.BmsProcessInfo; import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.BmsApprovalInfoUpdateDto; -import com.ruoyi.jjh.declaration.entity.dto.OpenInterfaceApplyAddDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsBigStrongAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.BmsProjectSettlementAwardQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.DeclarationRecordsVo; import com.ruoyi.jjh.declaration.service.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; -import java.time.LocalDate; -import java.util.ArrayList; import java.util.List; /** diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/OpenInterfaceServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/OpenInterfaceServiceImpl.java deleted file mode 100644 index 384c25a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/declaration/service/impl/OpenInterfaceServiceImpl.java +++ /dev/null @@ -1,101 +0,0 @@ -package com.ruoyi.jjh.declaration.service.impl; - -import cn.hutool.core.collection.CollectionUtil; -import com.ruoyi.jjh.declaration.entity.BmsEnterpriseBasicInfo; -import com.ruoyi.jjh.declaration.entity.BmsEnterpriseDirectory; -import com.ruoyi.jjh.declaration.entity.BmsProjectInfo; -import com.ruoyi.jjh.declaration.entity.BmsTemplateRecord; -import com.ruoyi.jjh.declaration.entity.dto.OpenInterfaceApplyAddDto; -import com.ruoyi.jjh.declaration.entity.vo.BmsTemplateRecordQueryVo; -import com.ruoyi.jjh.declaration.entity.vo.EnterpriseInfoTemplateVo; -import com.ruoyi.jjh.declaration.service.IBmsEnterpriseBasicInfoService; -import com.ruoyi.jjh.declaration.service.IBmsEnterpriseDirectoryService; -import com.ruoyi.jjh.declaration.service.IBmsProjectInfoService; -import com.ruoyi.jjh.declaration.service.IBmsProjectSettlementAwardService; -import com.ruoyi.jjh.declaration.service.IBmsTemplateRecordService; -import com.ruoyi.jjh.declaration.service.ICommonService; -import com.ruoyi.jjh.declaration.service.IOpenInterfaceService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.ArrayList; -import java.util.List; -import java.util.stream.Collectors; - -/** - *

- * 开放接口impl - *

- * - * @className: OpenInterfaceServiceImpl - * @author: emiya.xie - * @create: 2023-09-12 10:13 - */ -@Service -public class OpenInterfaceServiceImpl implements IOpenInterfaceService { - - @Autowired - private ICommonService iCommonService; - - @Autowired - private IBmsEnterpriseBasicInfoService iBmsEnterpriseBasicInfoService; - - @Autowired - private IBmsEnterpriseDirectoryService iBmsEnterpriseDirectoryService; - - @Autowired - private IBmsTemplateRecordService iBmsTemplateRecordService; - - @Autowired - private IBmsProjectInfoService iBmsProjectInfoService; - - @Autowired - private IBmsProjectSettlementAwardService iBmsProjectSettlementAwardService; - - -// @Override -// public EnterpriseInfoTemplateVo enterpriseList(String creditCode) { -// EnterpriseInfoTemplateVo enterpriseInfoTemplateVo = new EnterpriseInfoTemplateVo(); -// // 获取企业信息 -// List enterpriseList = iBmsEnterpriseBasicInfoService.lambdaQuery() -// .like(BmsEnterpriseBasicInfo::getTyshxydm, creditCode).list(); -// List directoryList = new ArrayList<>(); -// List templateRecordList = new ArrayList<>(); -// if (CollectionUtil.isNotEmpty(enterpriseList)) { -// // 企业信息不为空,获取企业名录信息 -// enterpriseInfoTemplateVo.setEnterpriseBasicList(enterpriseList); -// List creditCodeList = enterpriseList.stream().map(BmsEnterpriseBasicInfo::getTyshxydm).collect(Collectors.toList()); -// // 企业名录列表 -// directoryList = iBmsEnterpriseDirectoryService.lambdaQuery().in(BmsEnterpriseDirectory::getCreditCode, creditCodeList).list(); -// System.out.println(directoryList); -// } -// if (CollectionUtil.isNotEmpty(directoryList)) { -// List templateRecordIdList = directoryList.stream().map(BmsEnterpriseDirectory::getTemplateRecordId).distinct() -// .collect(Collectors.toList()); -// templateRecordList = iBmsTemplateRecordService.lambdaQuery().in(BmsTemplateRecord::getId, templateRecordIdList) -// .eq(BmsTemplateRecord::getRoad, 1L).list(); -// } -// List bmsTemplateRecordQueryVos = iBmsTemplateRecordService -// .selectTemplateRecordList(creditCode); -// enterpriseInfoTemplateVo.setTemplateRecordList(bmsTemplateRecordQueryVos); -// return enterpriseInfoTemplateVo; -// } - - /** - * 新增申报记录 - * - * @param openInterfaceApplyAddDto - * @return {@link int} - * @author emiya.xie - * @create 2023/9/12 14:54 - */ - @Override - public int insertOpenInterfaceApplyAddDto(OpenInterfaceApplyAddDto openInterfaceApplyAddDto) { - return iCommonService.insertOpenInterfaceApplyAddDto(openInterfaceApplyAddDto); - } - - @Override - public BmsProjectInfo getProjectInfo(Long templateRecordId) { - return iBmsProjectInfoService.getProjectInfo(templateRecordId); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/JProjectService.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/JProjectService.java index 7afaf47..6287bb2 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/JProjectService.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/JProjectService.java @@ -2,13 +2,11 @@ package com.ruoyi.jjh.ent.service; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; -import com.ruoyi.jjh.declaration.entity.BmsFundingDetail; import com.ruoyi.jjh.declaration.entity.vo.BmsApprovalInfoQueryVo; import com.ruoyi.jjh.ent.entity.JProject; import java.io.Serializable; import java.util.List; -import java.util.Map; /** @@ -36,7 +34,7 @@ public interface JProjectService extends IService { */ List getApprovalInfoList(Serializable id); - String getJsonString(List obj); + diff --git a/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/impl/JProjectServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/impl/JProjectServiceImpl.java index 057d803..4170d05 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/impl/JProjectServiceImpl.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/jjh/ent/service/impl/JProjectServiceImpl.java @@ -1,12 +1,9 @@ package com.ruoyi.jjh.ent.service.impl; -import cn.hutool.json.JSONUtil; -import com.alibaba.fastjson2.JSONObject; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ruoyi.jjh.declaration.entity.BmsEnterpriseBasicInfo; -import com.ruoyi.jjh.declaration.entity.BmsFundingDetail; import com.ruoyi.jjh.declaration.entity.vo.BmsApprovalInfoQueryVo; import com.ruoyi.jjh.declaration.service.IBmsDeclarationRecordsService; import com.ruoyi.jjh.declaration.service.IBmsEnterpriseBasicInfoService; @@ -18,9 +15,7 @@ import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.io.Serializable; -import java.util.ArrayList; import java.util.List; -import java.util.Map; /** * 项目表(JProject)表服务实现类 @@ -63,17 +58,7 @@ public class JProjectServiceImpl extends ServiceImpl i return baseMapper.getApprovalInfoList(id); } - @Override - public String getJsonString(List fund) { - StringBuilder str = new StringBuilder(); - //金额 - str.append("{"); - for (BmsFundingDetail v1 : fund) { - str.append('"').append(v1.getYear()).append(v1.getIllustrate()).append('"').append(":").append('"').append(v1.getAmount()).append('"').append(","); - } - str.append("}"); - return String.valueOf(str); - } + @Override diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsBigStrongAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsBigStrongAwardMapper.xml deleted file mode 100644 index f15720d..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsBigStrongAwardMapper.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - select id, enterprise_id, is_gain_rewards,reward_description, establish_time, development_plan, is_deleted, create_by, create_time, update_by, update_time, remark from bms_big_strong_award - - - - - - - - insert into bms_big_strong_award - - id, - enterprise_id, - is_gain_rewards, - reward_description, - establish_time, - development_plan, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{isGainRewards}, - #{rewardDescription}, - #{establishTime}, - #{developmentPlan}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_big_strong_award - - enterprise_id = #{enterpriseId}, - is_gain_rewards = #{isGainRewards}, - reward_description = #{rewardDescription}, - establish_time = #{establishTime}, - development_plan = #{developmentPlan}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_big_strong_award - where id = #{id} - - - - delete from bms_big_strong_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsBrandingAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsBrandingAwardMapper.xml deleted file mode 100644 index eaf6d2f..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsBrandingAwardMapper.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - select id, enterprise_id, honors_received, level, evidence, is_deleted, create_by, create_time, update_by, update_time, remark from bms_branding_award - - - - - - - - insert into bms_branding_award - - id, - enterprise_id, - honors_received, - level, - evidence, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{honorsReceived}, - #{level}, - #{evidence}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_branding_award - - enterprise_id = #{enterpriseId}, - honors_received = #{honorsReceived}, - level = #{level}, - evidence = #{evidence}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete from bms_branding_award where id = #{id} - - - - delete from bms_branding_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsCarrierConstructionAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsCarrierConstructionAwardMapper.xml deleted file mode 100644 index a736ee7..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsCarrierConstructionAwardMapper.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - project_name, - quantity_proportion, - revenue_proportion, - personnel_proportion, - supporting_materials, - business_license, - fire_report, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_carrier_construction_award - - - - - - - - insert into bms_carrier_construction_award - - id, - enterprise_id, - project_name, - quantity_proportion, - revenue_proportion, - personnel_proportion, - supporting_materials, - business_license, - fire_report, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{projectName}, - #{quantityProportion}, - #{revenueProportion}, - #{personnelProportion}, - #{supportingMaterials}, - #{businessLicense}, - #{fireReport}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_carrier_construction_award - - enterprise_id = #{enterpriseId}, - project_name = #{projectName}, - quantity_proportion = #{quantityProportion}, - revenue_proportion = #{revenueProportion}, - personnel_proportion = #{personnelProportion}, - supporting_materials = #{supportingMaterials}, - business_license = #{businessLicense}, - fire_report = #{fireReport}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_carrier_construction_award - where id = #{id} - - - - delete from bms_carrier_construction_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsCreditManagementMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsCreditManagementMapper.xml deleted file mode 100644 index e2b544b..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsCreditManagementMapper.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - project_plan, - uses_funds, - audit_report, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_credit_management - - - - - - - - insert into bms_credit_management - - enterprise_id, - project_plan, - uses_funds, - audit_report, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{enterpriseId}, - #{projectPlan}, - #{usesFunds}, - #{auditReport}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_credit_management - - enterprise_id = #{enterpriseId}, - project_plan = #{projectPlan}, - uses_funds = #{usesFunds}, - audit_report = #{auditReport}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_credit_management - where id = #{id} - - - - delete from bms_credit_management where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFieldInfoMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFieldInfoMapper.xml deleted file mode 100644 index a6fbf00..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFieldInfoMapper.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - - select id, - detail_id, - field_name, - field_result, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_field_info - - - - - - - - insert into bms_field_info - - detail_id, - field_name, - field_result, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{detailId}, - #{fieldName}, - #{fieldResult}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_field_info - - detail_id = #{detailId}, - field_name = #{fieldName}, - field_result = #{fieldResult}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_field_info - where id = #{id} - - - - delete from bms_field_info where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFileInfoMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFileInfoMapper.xml deleted file mode 100644 index 5b544db..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFileInfoMapper.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - select id, - detail_id, - file_name, - file_description, - file_url, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_file_info - - - - - - - - insert into bms_file_info - - detail_id, - file_name, - file_description, - file_url, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{detailId}, - #{fileName}, - #{fileDescription}, - #{fileUrl}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_file_info - - detail_id = #{detailId}, - file_name = #{fileName}, - file_description = #{fileDescription}, - file_url = #{fileUrl}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_file_info - where id = #{id} - - - - delete from bms_file_info where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFundingDetailMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFundingDetailMapper.xml deleted file mode 100644 index 3759b29..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsFundingDetailMapper.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - select id, - type, - template_record_id, - v_model, - detail_id, - year, - illustrate, - amount, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_funding_detail - - - - - - - - insert into bms_funding_detail - - type, - template_record_id, - detail_id, - v_model, - year, - illustrate, - amount, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{type}, - #{templateRecordId}, - #{detailId}, - #{vModel}, - #{year}, - #{illustrate}, - #{amount}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_funding_detail - - type = #{type}, - template_record_id = #{templateRecordId}, - detail_id = #{detailId}, - v_model = #{vModel}, - year = #{year}, - illustrate = #{illustrate}, - amount = #{amount}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_funding_detail - where id = #{id} - - - - delete from bms_funding_detail where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsIndustrialInternetAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsIndustrialInternetAwardMapper.xml deleted file mode 100644 index c07524c..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsIndustrialInternetAwardMapper.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - honorary_name, - material, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_industrial_internet_award - - - - - - - - insert into bms_industrial_internet_award - - id, - enterprise_id, - honorary_name, - material, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{honoraryName}, - #{material}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_industrial_internet_award - - enterprise_id = #{enterpriseId}, - honorary_name = #{honoraryName}, - material = #{material}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_industrial_internet_award - where id = #{id} - - - - delete from bms_industrial_internet_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsIntegrationIndustriesMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsIntegrationIndustriesMapper.xml deleted file mode 100644 index cc841d7..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsIntegrationIndustriesMapper.xml +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - declaration_type, - evidence, - business_license, - tax_payment_certificate, - audit_report, - equity_structure_chart, - declaration_report, - independent_accounting, - capital_verification_report, - other_evidence, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_integration_industries - - - - - - - - insert into bms_integration_industries - - enterprise_id, - declaration_type, - evidence, - business_license, - tax_payment_certificate, - audit_report, - equity_structure_chart, - declaration_report, - independent_accounting, - capital_verification_report, - other_evidence, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{enterpriseId}, - #{declarationType}, - #{evidence}, - #{businessLicense}, - #{taxPaymentCertificate}, - #{auditReport}, - #{equityStructureChart}, - #{declarationReport}, - #{independentAccounting}, - #{capitalVerificationReport}, - #{otherEvidence}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_integration_industries - - enterprise_id = #{enterpriseId}, - declaration_type = #{declarationType}, - evidence = #{evidence}, - business_license = #{businessLicense}, - tax_payment_certificate = #{taxPaymentCertificate}, - audit_report = #{auditReport}, - equity_structure_chart = #{equityStructureChart}, - declaration_report = #{declarationReport}, - independent_accounting = #{independentAccounting}, - capital_verification_report = #{capitalVerificationReport}, - - other_evidence = #{otherEvidence}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_integration_industries - where id = #{id} - - - - delete from bms_integration_industries where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsLogisticsDevelopmentAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsLogisticsDevelopmentAwardMapper.xml deleted file mode 100644 index c33c5e9..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsLogisticsDevelopmentAwardMapper.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - Honor_certificate, - platform_name, - filing_notice, - audit_report, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_logistics_development_award - - - - - - - - insert into bms_logistics_development_award - - id, - enterprise_id, - Honor_certificate, - platform_name, - filing_notice, - audit_report, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{honorCertificate}, - #{platformName}, - #{filingNotice}, - #{auditReport}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_logistics_development_award - - enterprise_id = #{enterpriseId}, - Honor_certificate = #{honorCertificate}, - platform_name = #{platformName}, - filing_notice = #{filingNotice}, - audit_report = #{auditReport}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_logistics_development_award - where id = #{id} - - - - delete from bms_logistics_development_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsManufacturingServicesAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsManufacturingServicesAwardMapper.xml deleted file mode 100644 index ab17b1b..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsManufacturingServicesAwardMapper.xml +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - filing_notice, - invoice, - audit_report, - financial_statements, - is_deleted, - create_by, - create_time, - update_by, - update_time - from bms_manufacturing_services_award - - - - - - - - insert into bms_manufacturing_services_award - - id, - enterprise_id, - filing_notice, - invoice, - audit_report, - financial_statements, - is_deleted, - create_by, - create_time, - update_by, - update_time, - - - #{id}, - #{enterpriseId}, - #{filingNotice}, - #{invoice}, - #{auditReport}, - #{financialStatements}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - - - - - update bms_manufacturing_services_award - - enterprise_id = #{enterpriseId}, - filing_notice = #{filingNotice}, - invoice = #{invoice}, - audit_report = #{auditReport}, - financial_statements = #{financialStatements}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - - where id = #{id} - - - - delete - from bms_manufacturing_services_award - where id = #{id} - - - - delete from bms_manufacturing_services_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsOutQuitProductsMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsOutQuitProductsMapper.xml deleted file mode 100644 index f710e7b..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsOutQuitProductsMapper.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - delete - from bms_out_quit_products - where id = #{id} - - - delete from bms_out_quit_products where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsPlatformConstructionAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsPlatformConstructionAwardMapper.xml deleted file mode 100644 index d8d2f5e..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsPlatformConstructionAwardMapper.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - platform_name, - agreement, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_platform_construction_award - - - - - - - - insert into bms_platform_construction_award - - id, - enterprise_id, - platform_name, - agreement, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{platformName}, - #{agreement}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_platform_construction_award - - enterprise_id = #{enterpriseId}, - platform_name = #{platformName}, - agreement = #{agreement}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_platform_construction_award - where id = #{id} - - - - delete from bms_platform_construction_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsProjectInfoMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsProjectInfoMapper.xml deleted file mode 100644 index b780d82..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsProjectInfoMapper.xml +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - select id, - declaration_template_type, - project_name, - enterprise_id, - product_area, - year, - start_time, - end_time, - completion_time, - support_methods, - declaration_time, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_project_info - - - - - - - - - insert into bms_project_info - - declaration_template_type, - project_name, - enterprise_id, - product_area, - year, - start_time, - end_time, - completion_time, - support_methods, - declaration_time, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{declarationTemplateType}, - #{projectName}, - #{enterpriseId}, - #{productArea}, - #{year}, - #{startTime}, - #{endTime}, - #{completionTime}, - #{supportMethods}, - #{declarationTime}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_project_info - - declaration_template_type = #{declarationTemplateType}, - project_name = #{projectName}, - enterprise_id = #{enterpriseId}, - product_area = #{productArea}, - year = #{year}, - start_time = #{startTime}, - end_time = #{endTime}, - completion_time = #{completionTime}, - support_methods = #{supportMethods}, - declaration_time = #{declarationTime}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_project_info - where id = #{id} - - - - delete from bms_project_info where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsProjectSettlementAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsProjectSettlementAwardMapper.xml deleted file mode 100644 index 38be136..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsProjectSettlementAwardMapper.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - establish_time, - employee_num, - agreement, - report, - business_license, - other_materials, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_project_settlement_award - - - - - - - - insert into bms_project_settlement_award - - id, - enterprise_id, - establish_time, - employee_num, - agreement, - report, - business_license, - other_materials, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{establishTime}, - #{employeeNum}, - #{agreement}, - #{report}, - #{businessLicense}, - #{otherMaterials}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_project_settlement_award - - enterprise_id = #{enterpriseId}, - establish_time = #{establishTime}, - employee_num = #{employeeNum}, - agreement = #{agreement}, - report = #{report}, - business_license = #{businessLicense}, - other_materials = #{otherMaterials}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_project_settlement_award - where id = #{id} - - - - delete from bms_project_settlement_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsSceneOpeningAwardMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsSceneOpeningAwardMapper.xml deleted file mode 100644 index f83822e..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BmsSceneOpeningAwardMapper.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - select id, - enterprise_id, - project_name, - type, - material, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bms_scene_opening_award - - - - - - - - insert into bms_scene_opening_award - - id, - enterprise_id, - project_name, - type, - material, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{enterpriseId}, - #{projectName}, - #{type}, - #{material}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bms_scene_opening_award - - enterprise_id = #{enterpriseId}, - project_name = #{projectName}, - type = #{type}, - material = #{material}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bms_scene_opening_award - where id = #{id} - - - - delete from bms_scene_opening_award where id in - - #{id} - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BsmFundingInfoMapper.xml b/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BsmFundingInfoMapper.xml deleted file mode 100644 index c044d1d..0000000 --- a/ruoyi-admin/src/main/resources/mapper/jjh/declaration/BsmFundingInfoMapper.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - select id, - type, - template_id, - detail_id, - revenue_year, - revenue, - taxation_year, - taxation, - expected_revenue_year, - expected_revenue, - expected_taxation_year, - expected_taxation, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark - from bsm_funding_info - - - - - - - - insert into bsm_funding_info - - id, - type, - template_id, - detail_id, - revenue_year, - revenue, - taxation_year, - taxation, - expected_revenue_year, - expected_revenue, - expected_taxation_year, - expected_taxation, - is_deleted, - create_by, - create_time, - update_by, - update_time, - remark, - - - #{id}, - #{type}, - #{templateId}, - #{detailId}, - #{revenueYear}, - #{revenue}, - #{taxationYear}, - #{taxation}, - #{expectedRevenueYear}, - #{expectedRevenue}, - #{expectedTaxationYear}, - #{expectedTaxation}, - #{isDeleted}, - #{createBy}, - #{createTime}, - #{updateBy}, - #{updateTime}, - #{remark}, - - - - - update bsm_funding_info - - type = #{type}, - template_id = #{templateId}, - detail_id = #{detailId}, - revenue_year = #{revenueYear}, - revenue = #{revenue}, - taxation_year = #{taxationYear}, - taxation = #{taxation}, - expected_revenue_year = #{expectedRevenueYear}, - expected_revenue = #{expectedRevenue}, - expected_taxation_year = #{expectedTaxationYear}, - expected_taxation = #{expectedTaxation}, - is_deleted = #{isDeleted}, - create_by = #{createBy}, - create_time = #{createTime}, - update_by = #{updateBy}, - update_time = #{updateTime}, - remark = #{remark}, - - where id = #{id} - - - - delete - from bsm_funding_info - where id = #{id} - - - - delete from bsm_funding_info where id in - - #{id} - - - - - \ No newline at end of file