Commit fd7f86b6 authored by hkl's avatar hkl

feat: 1.调整检查数据目录

parent ca71a35a
...@@ -25,7 +25,7 @@ public class CodeGenerate { ...@@ -25,7 +25,7 @@ public class CodeGenerate {
String outputDir = projectPath + "\\jeecg-module-system\\src\\main\\java\\"; String outputDir = projectPath + "\\jeecg-module-system\\src\\main\\java\\";
// 模块名 // 模块名
String moduleName = "checkData.equipmentCheckData"; String moduleName = "checkData";
// 表名 // 表名
String[] tables = { String[] tables = {
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
...@@ -9,11 +9,11 @@ import io.swagger.annotations.ApiParam; ...@@ -9,11 +9,11 @@ import io.swagger.annotations.ApiParam;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog; import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.checkData.equipmentCheckData.dto.CurveWearRecordDTO; import org.jeecg.modules.checkData.dto.CurveWearRecordDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.CurveWearRecord; import org.jeecg.modules.checkData.entity.CurveWearRecord;
import org.jeecg.modules.checkData.equipmentCheckData.service.ICurveWearRecordService; import org.jeecg.modules.checkData.service.ICurveWearRecordService;
import org.jeecg.modules.checkData.equipmentCheckData.vo.CurveWearRecordDetailVO; import org.jeecg.modules.checkData.vo.CurveWearRecordDetailVO;
import org.jeecg.modules.checkData.equipmentCheckData.vo.CurveWearRecordVO; import org.jeecg.modules.checkData.vo.CurveWearRecordVO;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import cn.hutool.core.convert.Convert; import cn.hutool.core.convert.Convert;
...@@ -19,11 +19,11 @@ import org.jeecg.common.aspect.annotation.AutoLog; ...@@ -19,11 +19,11 @@ import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.common.system.vo.LoginUser; import org.jeecg.common.system.vo.LoginUser;
import org.jeecg.common.util.UUIDGenerator; import org.jeecg.common.util.UUIDGenerator;
import org.jeecg.modules.checkData.equipmentCheckData.dto.MovementAdditiveInfoDTO; import org.jeecg.modules.checkData.dto.MovementAdditiveInfoDTO;
import org.jeecg.modules.checkData.equipmentCheckData.dto.MovementRecordsMasterDTO; import org.jeecg.modules.checkData.dto.MovementRecordsMasterDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.*; import org.jeecg.modules.checkData.entity.*;
import org.jeecg.modules.checkData.equipmentCheckData.service.*; import org.jeecg.modules.checkData.service.*;
import org.jeecg.modules.checkData.equipmentCheckData.vo.*; import org.jeecg.modules.checkData.vo.*;
import org.jeecg.modules.dynamicStaticAnalysis.mapper.AnalysisAlgorithmMapper; import org.jeecg.modules.dynamicStaticAnalysis.mapper.AnalysisAlgorithmMapper;
import org.jeecg.modules.subwayNetwork.entity.LightRail; import org.jeecg.modules.subwayNetwork.entity.LightRail;
import org.jeecg.modules.subwayNetwork.entity.LineAlias; import org.jeecg.modules.subwayNetwork.entity.LineAlias;
......
package org.jeecg.modules.checkData.dynamicStaticGeometricData.controller; package org.jeecg.modules.checkData.controller;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
...@@ -8,12 +8,12 @@ import io.swagger.annotations.ApiOperation; ...@@ -8,12 +8,12 @@ import io.swagger.annotations.ApiOperation;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog; import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItem; import org.jeecg.modules.checkData.entity.RailInspectionEquipmentItem;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemDetail; import org.jeecg.modules.checkData.entity.RailInspectionEquipmentItemDetail;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemDetailVO; import org.jeecg.modules.checkData.vo.RailInspectionEquipmentItemDetailVO;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemVO; import org.jeecg.modules.checkData.vo.RailInspectionEquipmentItemVO;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.service.IRailInspectionEquipmentItemDetailService; import org.jeecg.modules.checkData.service.IRailInspectionEquipmentItemDetailService;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.service.IRailInspectionEquipmentItemService; import org.jeecg.modules.checkData.service.IRailInspectionEquipmentItemService;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
...@@ -9,11 +9,11 @@ import io.swagger.annotations.ApiParam; ...@@ -9,11 +9,11 @@ import io.swagger.annotations.ApiParam;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog; import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.checkData.equipmentCheckData.dto.RailWearRecordDTO; import org.jeecg.modules.checkData.dto.RailWearRecordDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.RailWearRecord; import org.jeecg.modules.checkData.entity.RailWearRecord;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRailWearRecordService; import org.jeecg.modules.checkData.service.IRailWearRecordService;
import org.jeecg.modules.checkData.equipmentCheckData.vo.RailWearRecordDetailVO; import org.jeecg.modules.checkData.vo.RailWearRecordDetailVO;
import org.jeecg.modules.checkData.equipmentCheckData.vo.RailWearRecordVO; import org.jeecg.modules.checkData.vo.RailWearRecordVO;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import org.jeecg.modules.checkData.equipmentCheckData.entity.RecordPatrolMasterAssist; import org.jeecg.modules.checkData.entity.RecordPatrolMasterAssist;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRecordPatrolMasterAssistService; import org.jeecg.modules.checkData.service.IRecordPatrolMasterAssistService;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import cn.hutool.core.util.ObjectUtil; import cn.hutool.core.util.ObjectUtil;
...@@ -9,12 +9,12 @@ import io.swagger.annotations.ApiOperation; ...@@ -9,12 +9,12 @@ import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog; import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.modules.checkData.equipmentCheckData.dto.RecordPatrolMasterDTO; import org.jeecg.modules.checkData.dto.RecordPatrolMasterDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.*; import org.jeecg.modules.checkData.entity.*;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRecordPatrolMasterAssistService; import org.jeecg.modules.checkData.service.IRecordPatrolMasterAssistService;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRecordPatrolMasterInfoService; import org.jeecg.modules.checkData.service.IRecordPatrolMasterInfoService;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRecordPatrolMasterService; import org.jeecg.modules.checkData.service.IRecordPatrolMasterService;
import org.jeecg.modules.checkData.equipmentCheckData.vo.*; import org.jeecg.modules.checkData.vo.*;
import org.jeecg.modules.utils.BeanCopyUtil; import org.jeecg.modules.utils.BeanCopyUtil;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import org.jeecg.modules.checkData.equipmentCheckData.entity.RecordPatrolMasterInfo; import org.jeecg.modules.checkData.entity.RecordPatrolMasterInfo;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRecordPatrolMasterInfoService; import org.jeecg.modules.checkData.service.IRecordPatrolMasterInfoService;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import cn.hutool.core.util.ObjectUtil; import cn.hutool.core.util.ObjectUtil;
...@@ -10,17 +10,17 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page; ...@@ -10,17 +10,17 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import org.apache.commons.lang.StringUtils;
import org.apache.shiro.SecurityUtils; import org.apache.shiro.SecurityUtils;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog; import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.common.system.vo.LoginUser; import org.jeecg.common.system.vo.LoginUser;
import org.jeecg.modules.checkData.equipmentCheckData.dto.RecordsMasterCheckDTO; import org.jeecg.modules.checkData.dto.RecordsMasterCheckDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.*; import org.jeecg.modules.checkData.entity.*;
import org.jeecg.modules.checkData.equipmentCheckData.service.*; import org.jeecg.modules.checkData.service.*;
import org.jeecg.modules.checkData.equipmentCheckData.vo.RecordsMasterCheckVO; import org.jeecg.modules.checkData.vo.RecordsMasterCheckVO;
import org.jeecg.modules.checkData.equipmentCheckData.vo.RecordsMasterTurnoutInfoVO; import org.jeecg.modules.checkData.vo.RecordsMasterTurnoutInfoVO;
import org.jeecg.modules.checkData.equipmentCheckData.vo.TrackBedManagementCheckVO; import org.jeecg.modules.checkData.vo.TrackBedManagementCheckVO;
import org.jeecg.modules.deviceAsset.entity.TrackBedManagement; import org.jeecg.modules.deviceAsset.entity.TrackBedManagement;
import org.jeecg.modules.deviceAsset.service.ITrackBedManagementService; import org.jeecg.modules.deviceAsset.service.ITrackBedManagementService;
import org.jeecg.modules.utils.BeanCopyUtil; import org.jeecg.modules.utils.BeanCopyUtil;
...@@ -28,10 +28,9 @@ import org.jeecg.modules.utils.ExcelAnalysisUtils; ...@@ -28,10 +28,9 @@ import org.jeecg.modules.utils.ExcelAnalysisUtils;
import org.jeecg.modules.utils.ExcelUtils; import org.jeecg.modules.utils.ExcelUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.jeecg.common.system.base.controller.JeecgController;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import javax.transaction.Transactional; import javax.transaction.Transactional;
import java.io.InputStream; import java.io.InputStream;
...@@ -50,19 +49,19 @@ import java.util.*; ...@@ -50,19 +49,19 @@ import java.util.*;
@RequestMapping("/recordsMaster/check") @RequestMapping("/recordsMaster/check")
@Api(tags = "设备检查记录主表控制器") @Api(tags = "设备检查记录主表控制器")
public class RecordsMasterCheckController extends JeecgController<RecordsMasterCheck, IRecordsMasterCheckService> { public class RecordsMasterCheckController extends JeecgController<RecordsMasterCheck, IRecordsMasterCheckService> {
@Autowired @Resource
private ITrackBedManagementService trackBedManagementService; private ITrackBedManagementService trackBedManagementService;
@Autowired @Resource
private ITrackBedManagementCheckService trackBedManagementCheckService; private ITrackBedManagementCheckService trackBedManagementCheckService;
@Autowired @Resource
private IRecordsMasterTurnoutInfoService recordsMasterTurnoutInfoService; private IRecordsMasterTurnoutInfoService recordsMasterTurnoutInfoService;
@Autowired @Resource
private IRailWearRecordService railWearRecordService; private IRailWearRecordService railWearRecordService;
@Autowired @Resource
private ICurveWearRecordService curveWearRecordService; private ICurveWearRecordService curveWearRecordService;
@Autowired @Resource
private IRecordsMasterCorrWaveService recordsMasterCorrWaveService; private IRecordsMasterCorrWaveService recordsMasterCorrWaveService;
@Autowired @Resource
private IRecordsMasterCorrWaveInfoService recordsMasterCorrWaveInfoService; private IRecordsMasterCorrWaveInfoService recordsMasterCorrWaveInfoService;
//********************************设备检查记录相关接口************************************************************* //********************************设备检查记录相关接口*************************************************************
...@@ -375,10 +374,10 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC ...@@ -375,10 +374,10 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC
if (str.equals("波长")) { if (str.equals("波长")) {
type = type + 1; type = type + 1;
sort = sort + 1; sort = sort + 1;
this.uploadCorrWave(recordsMasterCorrWaveList,rowRecords,i,realname,id,type,sort); this.uploadCorrWave(recordsMasterCorrWaveList, rowRecords, i, realname, id, type, sort);
}else if(str.equals("D.N.")){ } else if (str.equals("D.N.")) {
infoType = this.uploadCorrWaveInfo(infoList,rowRecords,i,realname,id,infoType); infoType = this.uploadCorrWaveInfo(infoList, rowRecords, i, realname, id, infoType);
}else { } else {
if (i != rowRecords.size() - 1) { if (i != rowRecords.size() - 1) {
continue; continue;
} else { } else {
...@@ -401,8 +400,10 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC ...@@ -401,8 +400,10 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC
return Result.ok("操作成功"); return Result.ok("操作成功");
} }
//*****************************************封装解析方法************************************************************* //*****************************************封装解析方法*************************************************************
/** /**
* 处理波长详情部分 * 处理波长详情部分
*
* @param recordsMasterCorrWaveInfoList * @param recordsMasterCorrWaveInfoList
* @param rowRecords * @param rowRecords
* @param i * @param i
...@@ -410,12 +411,12 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC ...@@ -410,12 +411,12 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC
* @param id * @param id
* @param type * @param type
*/ */
public Integer uploadCorrWaveInfo(List<RecordsMasterCorrWaveInfo> recordsMasterCorrWaveInfoList,List<List<Object>> rowRecords,int i, String realname, String id,Integer type) { public Integer uploadCorrWaveInfo(List<RecordsMasterCorrWaveInfo> recordsMasterCorrWaveInfoList, List<List<Object>> rowRecords, int i, String realname, String id, Integer type) {
Integer sort1 = 0; Integer sort1 = 0;
for(int j = i+1; j < rowRecords.size(); j++){ for (int j = i + 1; j < rowRecords.size(); j++) {
String data = rowRecords.get(j).get(0).toString().trim(); String data = rowRecords.get(j).get(0).toString().trim();
if(ObjectUtil.isEmpty(data)){ if (ObjectUtil.isEmpty(data)) {
return type+1; return type + 1;
} }
sort1++; sort1++;
RecordsMasterCorrWaveInfo model = new RecordsMasterCorrWaveInfo(); RecordsMasterCorrWaveInfo model = new RecordsMasterCorrWaveInfo();
...@@ -443,27 +444,29 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC ...@@ -443,27 +444,29 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC
//获取限定值 //获取限定值
String restrictNum = ""; String restrictNum = "";
restrictNum = rowRecords.get(j).get(4).toString().trim(); restrictNum = rowRecords.get(j).get(4).toString().trim();
if(ObjectUtil.isNotEmpty(code)){ if (ObjectUtil.isNotEmpty(code)) {
model.setCode(code); model.setCode(code);
} }
if(ObjectUtil.isNotEmpty(mileage)){ if (ObjectUtil.isNotEmpty(mileage)) {
model.setMileage(mileage); model.setMileage(mileage);
} }
if(ObjectUtil.isNotEmpty(waveNum)){ if (ObjectUtil.isNotEmpty(waveNum)) {
model.setWaveNum(waveNum); model.setWaveNum(waveNum);
} }
if(ObjectUtil.isNotEmpty(one)){ if (ObjectUtil.isNotEmpty(one)) {
model.setNumOne(one); model.setNumOne(one);
} }
if(ObjectUtil.isNotEmpty(restrictNum)){ if (ObjectUtil.isNotEmpty(restrictNum)) {
model.setRestrictNum(restrictNum); model.setRestrictNum(restrictNum);
} }
recordsMasterCorrWaveInfoList.add(model); recordsMasterCorrWaveInfoList.add(model);
} }
return type; return type;
} }
/** /**
* 处理波长部分 * 处理波长部分
*
* @param recordsMasterCorrWaveList * @param recordsMasterCorrWaveList
* @param rowRecords * @param rowRecords
* @param i * @param i
...@@ -472,7 +475,7 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC ...@@ -472,7 +475,7 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC
* @param type * @param type
* @param sort * @param sort
*/ */
public void uploadCorrWave(List<RecordsMasterCorrWave> recordsMasterCorrWaveList,List<List<Object>> rowRecords,int i, String realname, String id,Integer type,Integer sort) { public void uploadCorrWave(List<RecordsMasterCorrWave> recordsMasterCorrWaveList, List<List<Object>> rowRecords, int i, String realname, String id, Integer type, Integer sort) {
RecordsMasterCorrWave model = new RecordsMasterCorrWave(); RecordsMasterCorrWave model = new RecordsMasterCorrWave();
model.setId(IdWorker.get32UUID()); model.setId(IdWorker.get32UUID());
model.setDelFlag("0"); model.setDelFlag("0");
...@@ -510,7 +513,7 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC ...@@ -510,7 +513,7 @@ public class RecordsMasterCheckController extends JeecgController<RecordsMasterC
if (ObjectUtil.isNotEmpty(three)) { if (ObjectUtil.isNotEmpty(three)) {
model.setNumThree(new BigDecimal(three)); model.setNumThree(new BigDecimal(three));
} }
if(ObjectUtil.isNotEmpty(wave)){ if (ObjectUtil.isNotEmpty(wave)) {
model.setWave(wave); model.setWave(wave);
} }
recordsMasterCorrWaveList.add(model); recordsMasterCorrWaveList.add(model);
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import org.jeecg.modules.checkData.equipmentCheckData.entity.RecordsMasterCheck; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.checkData.equipmentCheckData.entity.TrackBedManagementCheck; import org.jeecg.modules.checkData.entity.TrackBedManagementCheck;
import org.jeecg.modules.checkData.equipmentCheckData.service.IRecordsMasterCheckService; import org.jeecg.modules.checkData.service.ITrackBedManagementCheckService;
import org.jeecg.modules.checkData.equipmentCheckData.service.ITrackBedManagementCheckService;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import org.jeecg.common.system.base.controller.JeecgController;
/** /**
* <p> * <p>
......
package org.jeecg.modules.checkData.equipmentCheckData.controller; package org.jeecg.modules.checkData.controller;
import org.jeecg.modules.checkData.equipmentCheckData.entity.TurnoutUseCheck; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.checkData.equipmentCheckData.service.ITurnoutUseCheckService; import org.jeecg.modules.checkData.entity.TurnoutUseCheck;
import org.jeecg.modules.checkData.service.ITurnoutUseCheckService;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import org.jeecg.common.system.base.controller.JeecgController;
/** /**
* <p> * <p>
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
......
package org.jeecg.modules.checkData.equipmentCheckData.dto; package org.jeecg.modules.checkData.dto;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
......
<?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.jeecg.modules.checkData.dynamicStaticGeometricData.mapper.RailInspectionEquipmentItemDetailMapper">
<select id="detailList"
resultType="org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemDetailVO">
SELECT
t1.id,
t1.create_by,
t1.create_time,
t1.update_by,
t1.update_time,
t1.rail_inspection_equipment_id,
t1.rail_inspection_equipment_item_id,
t1.check_item,
t1.measure_point,
t1.track_gauge,
t1.level,
t1.triangular_pit,
t1.other,
t1.del_flag,
t1.info_sort
FROM
t_dsg_rail_inspection_equipment_item_detail t1
WHERE rail_inspection_equipment_item_id = #{itemId}
</select>
</mapper>
<?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.jeecg.modules.checkData.dynamicStaticGeometricData.mapper.RailInspectionEquipmentItemMapper">
<select id="queryList"
resultType="org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemVO">
SELECT
t1.id,
t1.id itemId,
t1.create_by,
t1.create_time,
t1.update_by,
t1.update_time,
t1.rail_inspection_equipment_id,
t1.course_starting_mileage,
t1.course_end_mileage,
t1.curve_radius,
t1.super_high,
t1.widen,
t1.slope_ratio,
t1.long_extent,
t1.remark,
t1.del_flag,
t1.sort
FROM
t_dsg_rail_inspection_equipment_item t1
WHERE
t1.del_flag = '0'
AND t1.rail_inspection_equipment_id = #{railInspectionEquipmentId}
</select>
</mapper>
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable; import java.io.Serializable;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.dynamicStaticGeometricData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.dynamicStaticGeometricData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import org.jeecg.modules.checkData.equipmentCheckData.vo.RecordsMasterCorrWaveInfoVO;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/** /**
* <p> * <p>
* 设备检查记录数据-钢轨波磨情况检查数据-波长 * 设备检查记录数据-钢轨波磨情况检查数据-波长
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.jeecg.modules.checkData.equipmentCheckData.entity; package org.jeecg.modules.checkData.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
......
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementAdditiveInfoMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementAdditiveInfoUnitDeviceMapMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementCheckDataUnitDeviceMapMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementDiferenceManagerMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementOverReportUnitDeviceMapMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementSectionReportMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementSummaryReportMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementTqiKilometerReportMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementTqiKilometerStandardManagerMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementTqiReportUnitDeviceMapMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.MovementTqiStandardManagerMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.RecordPatrolMasterAssistMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.RecordPatrolMasterInfoMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.RecordsMasterCorrWaveInfoMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.RecordsMasterCorrWaveMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.RecordsMasterTurnoutInfoMapper">
</mapper>
<?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.jeecg.modules.checkData.equipmentCheckData.mapper.TrackBedManagementCheckMapper">
</mapper>
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.jeecg.modules.checkData.equipmentCheckData.dto.CurveWearRecordDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.CurveWearRecord;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.checkData.equipmentCheckData.vo.CurveWearRecordDetailVO; import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.jeecg.modules.checkData.equipmentCheckData.vo.CurveWearRecordVO; import org.jeecg.modules.checkData.dto.CurveWearRecordDTO;
import org.jeecg.modules.checkData.entity.CurveWearRecord;
import org.jeecg.modules.checkData.vo.CurveWearRecordDetailVO;
import org.jeecg.modules.checkData.vo.CurveWearRecordVO;
/** /**
* <p> * <p>
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementAdditiveInfo; import org.jeecg.modules.checkData.entity.MovementAdditiveInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementAdditiveInfoUnitDeviceMap; import org.jeecg.modules.checkData.entity.MovementAdditiveInfoUnitDeviceMap;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementCheckDataUnitDeviceMap;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.checkData.entity.MovementCheckDataUnitDeviceMap;
/** /**
* <p> * <p>
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementCourseInfo; import org.jeecg.modules.checkData.entity.MovementCourseInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementCourse; import org.jeecg.modules.checkData.entity.MovementCourse;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementDiferenceManager; import org.jeecg.modules.checkData.entity.MovementDiferenceManager;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementOverReport; import org.jeecg.modules.checkData.entity.MovementOverReport;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementOverReportUnitDeviceMap; import org.jeecg.modules.checkData.entity.MovementOverReportUnitDeviceMap;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.jeecg.modules.checkData.equipmentCheckData.dto.MovementAdditiveInfoDTO; import org.jeecg.modules.checkData.dto.MovementAdditiveInfoDTO;
import org.jeecg.modules.checkData.equipmentCheckData.dto.MovementRecordsMasterDTO; import org.jeecg.modules.checkData.dto.MovementRecordsMasterDTO;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementRecordsMaster; import org.jeecg.modules.checkData.entity.MovementRecordsMaster;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.checkData.equipmentCheckData.vo.MovementAdditiveInfoVO; import org.jeecg.modules.checkData.vo.MovementAdditiveInfoVO;
import org.jeecg.modules.checkData.equipmentCheckData.vo.MovementRecordsMasterVO; import org.jeecg.modules.checkData.vo.MovementRecordsMasterVO;
import java.math.BigDecimal; import java.math.BigDecimal;
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementSectionReport; import org.jeecg.modules.checkData.entity.MovementSectionReport;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementSummaryReport; import org.jeecg.modules.checkData.entity.MovementSummaryReport;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementTqiKilometerReport; import org.jeecg.modules.checkData.entity.MovementTqiKilometerReport;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementTqiKilometerStandardManager; import org.jeecg.modules.checkData.entity.MovementTqiKilometerStandardManager;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementTqiReport; import org.jeecg.modules.checkData.entity.MovementTqiReport;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementTqiReportUnitDeviceMap; import org.jeecg.modules.checkData.entity.MovementTqiReportUnitDeviceMap;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.equipmentCheckData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.equipmentCheckData.entity.MovementTqiStandardManager; import org.jeecg.modules.checkData.entity.MovementTqiStandardManager;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/** /**
......
package org.jeecg.modules.checkData.dynamicStaticGeometricData.mapper; package org.jeecg.modules.checkData.mapper;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemDetail; import org.jeecg.modules.checkData.entity.RailInspectionEquipmentItemDetail;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.checkData.dynamicStaticGeometricData.entity.RailInspectionEquipmentItemDetailVO; import org.jeecg.modules.checkData.vo.RailInspectionEquipmentItemDetailVO;
import java.util.List; import java.util.List;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment