Explorar el Código

183 2-7计量公式

chenr hace 9 meses
padre
commit
34baab81e0

+ 127 - 0
blade-service/blade-manager/src/main/java/org/springblade/manager/controller/FormEndPayController.java

@@ -0,0 +1,127 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.manager.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import lombok.AllArgsConstructor;
+import javax.validation.Valid;
+
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestParam;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.manager.entity.FormEndPay;
+import org.springblade.manager.vo.FormEndPayVO;
+import org.springblade.manager.service.IFormEndPayService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ *  控制器
+ *
+ * @author BladeX
+ * @since 2024-12-02
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("/formendpay")
+@Api(value = "", tags = "接口")
+public class FormEndPayController extends BladeController {
+
+	private final IFormEndPayService formEndPayService;
+
+	/**
+	 * 详情
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "详情", notes = "传入formEndPay")
+	public R<FormEndPay> detail(FormEndPay formEndPay) {
+		FormEndPay detail = formEndPayService.getOne(Condition.getQueryWrapper(formEndPay));
+		return R.data(detail);
+	}
+
+	/**
+	 * 分页 
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "分页", notes = "传入formEndPay")
+	public R<IPage<FormEndPay>> list(FormEndPay formEndPay, Query query) {
+		IPage<FormEndPay> pages = formEndPayService.page(Condition.getPage(query), Condition.getQueryWrapper(formEndPay));
+		return R.data(pages);
+	}
+
+	/**
+	 * 自定义分页 
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "分页", notes = "传入formEndPay")
+	public R<IPage<FormEndPayVO>> page(FormEndPayVO formEndPay, Query query) {
+		IPage<FormEndPayVO> pages = formEndPayService.selectFormEndPayPage(Condition.getPage(query), formEndPay);
+		return R.data(pages);
+	}
+
+	/**
+	 * 新增 
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "新增", notes = "传入formEndPay")
+	public R save(@Valid @RequestBody FormEndPay formEndPay) {
+		return R.status(formEndPayService.save(formEndPay));
+	}
+
+	/**
+	 * 修改 
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "修改", notes = "传入formEndPay")
+	public R update(@Valid @RequestBody FormEndPay formEndPay) {
+		return R.status(formEndPayService.updateById(formEndPay));
+	}
+
+	/**
+	 * 新增或修改 
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "新增或修改", notes = "传入formEndPay")
+	public R submit(@Valid @RequestBody FormEndPay formEndPay) {
+		return R.status(formEndPayService.saveOrUpdate(formEndPay));
+	}
+
+	
+	/**
+	 * 删除 
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "逻辑删除", notes = "传入ids")
+	public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+		return R.status(formEndPayService.deleteLogic(Func.toLongList(ids)));
+	}
+
+	
+}

+ 44 - 0
blade-service/blade-manager/src/main/java/org/springblade/manager/mapper/FormEndPayMapper.java

@@ -0,0 +1,44 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.manager.mapper;
+
+import feign.Param;
+import org.springblade.manager.entity.FormEndPay;
+import org.springblade.manager.vo.FormEndPayVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ *  Mapper 接口
+ *
+ * @author BladeX
+ * @since 2024-12-02
+ */
+public interface FormEndPayMapper extends BaseMapper<FormEndPay> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param formEndPay
+	 * @return
+	 */
+	List<FormEndPayVO> selectFormEndPayPage(IPage page, FormEndPayVO formEndPay);
+
+
+}

+ 14 - 0
blade-service/blade-manager/src/main/java/org/springblade/manager/mapper/FormEndPayMapper.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.springblade.manager.mapper.FormEndPayMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="formEndPayResultMap" type="org.springblade.manager.entity.FormEndPay">
+        <result column="id" property="id"/>
+        <result column="period_id" property="periodId"/>
+        <result column="contract_id" property="contractId"/>
+        <result column="form_number" property="formNumber"/>
+        <result column="current_period_end_pay" property="currentPeriodEndPay"/>
+    </resultMap>
+
+</mapper>

+ 46 - 0
blade-service/blade-manager/src/main/java/org/springblade/manager/service/IFormEndPayService.java

@@ -0,0 +1,46 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.manager.service;
+
+import org.springblade.manager.entity.FormEndPay;
+import org.springblade.manager.vo.FormEndPayVO;
+import org.springblade.core.mp.base.BaseService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.springblade.meter.entity.ContractMeterPeriod;
+
+import java.util.List;
+
+/**
+ *  服务类
+ *
+ * @author BladeX
+ * @since 2024-12-02
+ */
+public interface IFormEndPayService extends BaseService<FormEndPay> {
+
+	/**
+	 * 自定义分页
+	 *
+	 * @param page
+	 * @param formEndPay
+	 * @return
+	 */
+	IPage<FormEndPayVO> selectFormEndPayPage(IPage<FormEndPayVO> page, FormEndPayVO formEndPay);
+
+
+
+}

+ 52 - 0
blade-service/blade-manager/src/main/java/org/springblade/manager/service/impl/FormEndPayServiceImpl.java

@@ -0,0 +1,52 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 庄骞 (smallchill@163.com)
+ */
+package org.springblade.manager.service.impl;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.springblade.manager.entity.FormEndPay;
+import org.springblade.manager.vo.FormEndPayVO;
+import org.springblade.manager.mapper.FormEndPayMapper;
+import org.springblade.manager.service.IFormEndPayService;
+import org.springblade.core.mp.base.BaseServiceImpl;
+import org.springblade.meter.entity.ContractMeterPeriod;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.jdbc.core.BeanPropertyRowMapper;
+import org.springframework.jdbc.core.JdbcTemplate;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+import javax.annotation.Resource;
+import java.util.Collections;
+import java.util.List;
+
+/**
+ *  服务实现类
+ *
+ * @author BladeX
+ * @since 2024-12-02
+ */
+@Service
+public class FormEndPayServiceImpl extends BaseServiceImpl<FormEndPayMapper, FormEndPay> implements IFormEndPayService {
+
+    @Override
+	public IPage<FormEndPayVO> selectFormEndPayPage(IPage<FormEndPayVO> page, FormEndPayVO formEndPay) {
+		return page.setRecords(baseMapper.selectFormEndPayPage(page, formEndPay));
+	}
+
+
+}