|
@@ -31,7 +31,6 @@ import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
-import org.apache.ibatis.annotations.Param;
|
|
|
import org.apache.ibatis.mapping.ParameterMode;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -43,10 +42,9 @@ import java.util.*;
|
|
|
import java.util.concurrent.ConcurrentLinkedQueue;
|
|
|
|
|
|
|
|
|
- * 抄表计划_抄表录入
|
|
|
+ * 抄表计划-抄表录入算费接口
|
|
|
*
|
|
|
- * @author xb
|
|
|
- * @date Thu Jun 01 00:00:00 CST 2023
|
|
|
+ * @author shudong
|
|
|
*/
|
|
|
@RestController
|
|
|
@AllArgsConstructor
|
|
@@ -63,7 +61,7 @@ public class BwMeterReadPlanController extends BaseController {
|
|
|
* 抄表录入查询列表数据
|
|
|
*/
|
|
|
@PostMapping("/page")
|
|
|
- @ApiOperation(value = "分页查询")
|
|
|
+ @ApiOperation(value = "抄表录入查询列表数据")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "companyBranch", value = "公司", dataType = "String"),
|
|
|
@ApiImplicitParam(name = "mrArea", value = "片区", dataType = "String"),
|
|
@@ -342,7 +340,7 @@ public class BwMeterReadPlanController extends BaseController {
|
|
|
listZB.add(new ProcParamModel("P_CBKID", ParameterMode.IN, JDBCType.INTEGER, null));
|
|
|
listZB.add(new ProcParamModel("P_SFCG", ParameterMode.OUT, JDBCType.INTEGER, 0));
|
|
|
listZB.add(new ProcParamModel("P_MSG", ParameterMode.OUT, JDBCType.VARCHAR, ""));
|
|
|
- Map mapZB = db.excuteProcedure("PROC_SLJS_ZB", listZB);
|
|
|
+ Map mapZB = db.executeProcedure("PROC_SLJS_ZB", listZB);
|
|
|
|
|
|
|
|
|
if (!(mapZB != null && mapZB.get("P_SFCG").equals(1))) {
|
|
@@ -391,7 +389,7 @@ public class BwMeterReadPlanController extends BaseController {
|
|
|
listSLSF.add(new ProcParamModel("P_CBKID", ParameterMode.IN, JDBCType.INTEGER, meterCId));
|
|
|
listSLSF.add(new ProcParamModel("P_SFCG", ParameterMode.OUT, JDBCType.INTEGER, 0));
|
|
|
listSLSF.add(new ProcParamModel("P_MSG", ParameterMode.OUT, JDBCType.VARCHAR, ""));
|
|
|
- Map mapSLSF = db.excuteProcedure("PROC_SLSFJS", listSLSF);
|
|
|
+ Map mapSLSF = db.executeProcedure("PROC_SLSFJS", listSLSF);
|
|
|
|
|
|
if (mapSLSF != null && mapSLSF.get("P_SFCG").equals(1)) {
|
|
|
intReturnNum++;
|