|
@@ -1,5 +1,6 @@
|
|
|
package com.tofly.fees.financialmgt.controller_easy;
|
|
|
|
|
|
+import cn.hutool.db.meta.JdbcType;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
|
import com.tofly.common.core.entity.ResultRespone;
|
|
|
import com.tofly.fees.common.BaseController;
|
|
@@ -7,6 +8,7 @@ import com.tofly.fees.common.dbhelper.DbHelper;
|
|
|
import com.tofly.fees.common.enums.SysEnum;
|
|
|
import com.tofly.fees.common.model.CollectionData;
|
|
|
import com.tofly.fees.common.model.PageLink;
|
|
|
+import com.tofly.fees.common.model.ProcParamModel;
|
|
|
import com.tofly.fees.common.util.DateUtils;
|
|
|
import com.tofly.fees.common.util.XmlUtils;
|
|
|
import io.swagger.annotations.Api;
|
|
@@ -14,6 +16,7 @@ import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import org.apache.ibatis.io.Resources;
|
|
|
+import org.apache.ibatis.mapping.ParameterMode;
|
|
|
import org.springframework.data.repository.query.Param;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -22,6 +25,8 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.io.InputStream;
|
|
|
+import java.sql.JDBCType;
|
|
|
+import java.sql.ParameterMetaData;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
@@ -39,46 +44,65 @@ import static com.tofly.fees.common.ControllerConstants.Mapper_Redis_Prix;
|
|
|
@RestController
|
|
|
@AllArgsConstructor
|
|
|
@RequestMapping("/api/financialmgt/sfrec")
|
|
|
-@Api(tags="核算管理-欠费明细(含欠费变更)接口")
|
|
|
+@Api(tags = "核算管理-欠费明细(含欠费变更)接口")
|
|
|
public class SfRecEasyController extends BaseController {
|
|
|
|
|
|
|
|
|
* 分页查询
|
|
|
*
|
|
|
- * @param 分页对象
|
|
|
+ * @param 分页对象
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("/getListByCustomerNo")
|
|
|
@ApiOperation(value = "[Easy]查询欠费不分页")
|
|
|
- public ResultRespone getRecPage( @ApiParam(value = "用户编号")
|
|
|
- @RequestParam(value = "customerNo", defaultValue = "") String customerNo
|
|
|
+ public ResultRespone getRecPage(@ApiParam(value = "用户编号")
|
|
|
+ @RequestParam(value = "customerNo", defaultValue = "") String customerNo
|
|
|
) throws Exception {
|
|
|
|
|
|
|
|
|
DbHelper db = DbHelper.getDbHelper();
|
|
|
- List<HashMap<String,Object>> lst=new ArrayList<>();
|
|
|
-
|
|
|
- Map<String,Object> params = new HashMap<>();
|
|
|
- params.put("V_YHBH",customerNo);
|
|
|
- params.put("V_ISFFGX","0");
|
|
|
- params.put("V_CUR",lst) ;
|
|
|
- params.put("V_SFCG","0") ;
|
|
|
+ List<HashMap<String, Object>> lst = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-
|
|
|
- Map mp = db.procurdeCmd("{call PROC_CX_QFMX(" +
|
|
|
- "#{V_YHBH,mode=IN,jdbcType=VARCHAR}," +
|
|
|
- "#{V_ISFFGX,mode=IN,jdbcType=VARCHAR},"+
|
|
|
- "#{V_CUR,mode=OUT,jdbcType=CURSOR},"+
|
|
|
- "#{V_SFCG,mode=OUT,jdbcType=VARCHAR}"+
|
|
|
- ")}",params, SysEnum.MyBatis.getName());
|
|
|
|
|
|
-
|
|
|
- ArrayList<Object> arr=(ArrayList<Object>)mp.get("V_CUR");
|
|
|
- if(mp.get("V_SFCG").equals("0")) {
|
|
|
- return ResultRespone.success(new CollectionData(arr, arr.size()));
|
|
|
- }else {
|
|
|
- return ResultRespone.success(new CollectionData(null,0));
|
|
|
- }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ List<ProcParamModel> list = new ArrayList<>();
|
|
|
+ list.add(new ProcParamModel("V_YHBH", ParameterMode.IN, JDBCType.VARCHAR, customerNo));
|
|
|
+ list.add(new ProcParamModel("V_ISFFGX", ParameterMode.IN, JDBCType.VARCHAR, "0"));
|
|
|
+ list.add(new ProcParamModel("V_CUR", ParameterMode.OUT, JDBCType.REF_CURSOR, lst));
|
|
|
+ list.add(new ProcParamModel("V_SFCG", ParameterMode.OUT, JDBCType.VARCHAR, "0"));
|
|
|
+ Map map = db.excuteProcedure("PROC_CX_QFMX", list);
|
|
|
+
|
|
|
+
|
|
|
+ if (map != null && map.get("V_SFCG").equals("0")) {
|
|
|
+ return ResultRespone.success(map.get("V_CUR"));
|
|
|
+ } else {
|
|
|
+ return ResultRespone.success(new CollectionData(null, 0));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|