Browse Source

Merge remote-tracking branch 'origin/master'

zhongwei
yang_shj 10 months ago
parent
commit
5a4f6d5f8c
  1. 2
      hzims-service-api/safeproduct-api/src/main/java/com/hnac/hzims/safeproduct/entity/CarEntity.java
  2. 2
      hzims-service-api/safeproduct-api/src/main/java/com/hnac/hzims/safeproduct/entity/SpecialDeviceInspectionEntity.java
  3. 8
      hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/ICarAnnualInspectionService.java
  4. 7
      hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/ICarInsuranceService.java
  5. 17
      hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/impl/CarAnnualInspectionServiceImpl.java
  6. 19
      hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/impl/CarInsuranceServiceImpl.java
  7. 32
      hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/impl/CarServiceImpl.java
  8. 44
      hzims-service/safeproduct/src/main/resources/db/1.0.2.sql

2
hzims-service-api/safeproduct-api/src/main/java/com/hnac/hzims/safeproduct/entity/CarEntity.java

@ -64,12 +64,10 @@ public class CarEntity extends BaseEntity {
@ApiModelProperty("下期年检时间") @ApiModelProperty("下期年检时间")
private Date nextAnnualInspectionTime; private Date nextAnnualInspectionTime;
@NotNull
@Size(max = 50, message = "年检状态长度不能超过50") @Size(max = 50, message = "年检状态长度不能超过50")
@ApiModelProperty("年检状态") @ApiModelProperty("年检状态")
private String annualInspectionStatus; private String annualInspectionStatus;
@NotNull
@Size(max = 50, message = "保险状态长度不能超过50") @Size(max = 50, message = "保险状态长度不能超过50")
@ApiModelProperty("保险状态") @ApiModelProperty("保险状态")
private String insuranceStatus; private String insuranceStatus;

2
hzims-service-api/safeproduct-api/src/main/java/com/hnac/hzims/safeproduct/entity/SpecialDeviceInspectionEntity.java

@ -33,11 +33,9 @@ public class SpecialDeviceInspectionEntity extends BaseEntity {
@ApiModelProperty("检验照片") @ApiModelProperty("检验照片")
private String imgPath; private String imgPath;
@TableField(exist = false)
@ApiModelProperty("下次检验时间") @ApiModelProperty("下次检验时间")
private Date nextInspectionTime; private Date nextInspectionTime;
@TableField(exist = false)
@ApiModelProperty("上次检验时间") @ApiModelProperty("上次检验时间")
private Date lastInspectionTime; private Date lastInspectionTime;
} }

8
hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/ICarAnnualInspectionService.java

@ -37,4 +37,12 @@ public interface ICarAnnualInspectionService extends IService<CarAnnualInspectio
* @return 年检记录数据 * @return 年检记录数据
*/ */
IPage<CarAnnualInspectionPageVO> getCarAnnualInspectionPage(Map<String, Object> param, Query query); IPage<CarAnnualInspectionPageVO> getCarAnnualInspectionPage(Map<String, Object> param, Query query);
/**
* 删除关联年检记录
* @param carId 车辆id
* @return true-成功false-失败
*/
boolean removeRelativeCarAnnualInspection(Long carId);
} }

7
hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/ICarInsuranceService.java

@ -38,4 +38,11 @@ public interface ICarInsuranceService extends IService<CarInsuranceEntity> {
* @return 车保记录数据 * @return 车保记录数据
*/ */
IPage<CarInsurancePageVO> getCarInsurancePage(Map<String, Object> param, Query query); IPage<CarInsurancePageVO> getCarInsurancePage(Map<String, Object> param, Query query);
/**
* 删除关联车保记录
* @param carId 车辆id
* @return true-成功false-失败
*/
boolean removeRelativeCarInsurance(Long carId);
} }

17
hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/impl/CarAnnualInspectionServiceImpl.java

@ -22,6 +22,7 @@ import org.springframework.transaction.annotation.Transactional;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors;
/** /**
* 年检记录服务实现类 * 年检记录服务实现类
@ -93,6 +94,22 @@ public class CarAnnualInspectionServiceImpl extends ServiceImpl<CarAnnualInspect
} }
/** /**
* 删除关联年检记录
*/
@Override
public boolean removeRelativeCarAnnualInspection(Long carId) {
QueryWrapper<CarAnnualInspectionEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(CarAnnualInspectionEntity::getCarId, carId);
List<CarAnnualInspectionEntity> list = this.list(queryWrapper);
// 若无关联年检记录,返回true
if (CollectionUtils.isEmpty(list)) {
return true;
}
List<Long> ids = list.stream().map(CarAnnualInspectionEntity::getId).collect(Collectors.toList());
return this.removeByIds(ids);
}
/**
* 查询是否存在同月编号 * 查询是否存在同月编号
* @param currentMonth 当月 * @param currentMonth 当月
* @return 存在则返回上一编号否则返回null * @return 存在则返回上一编号否则返回null

19
hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/impl/CarInsuranceServiceImpl.java

@ -21,6 +21,7 @@ import org.springframework.stereotype.Service;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors;
/** /**
* 车保记录服务实现类 * 车保记录服务实现类
@ -55,7 +56,7 @@ public class CarInsuranceServiceImpl extends ServiceImpl<CarInsuranceMapper, Car
carEntity.setInsurancePayLastTime(carInsuranceEntity.getInsuranceTime()); carEntity.setInsurancePayLastTime(carInsuranceEntity.getInsuranceTime());
carEntity.setInsurancePayNextTime(carInsuranceEntity.getNextInsuranceTime()); carEntity.setInsurancePayNextTime(carInsuranceEntity.getNextInsuranceTime());
// 更新年检状态 // 更新年检状态
carEntity.setAnnualInspectionStatus(CarInsuranceStatusEnum.INSURED.getValue()); carEntity.setInsuranceStatus(CarInsuranceStatusEnum.INSURED.getValue());
return carService.updateById(carEntity); return carService.updateById(carEntity);
} }
} }
@ -90,6 +91,22 @@ public class CarInsuranceServiceImpl extends ServiceImpl<CarInsuranceMapper, Car
} }
/** /**
* 删除关联车保记录
*/
@Override
public boolean removeRelativeCarInsurance(Long carId) {
QueryWrapper<CarInsuranceEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(CarInsuranceEntity::getCarId, carId);
List<CarInsuranceEntity> list = this.list(queryWrapper);
// 若无关联用车记录,返回true
if (CollectionUtils.isEmpty(list)) {
return true;
}
List<Long> ids = list.stream().map(CarInsuranceEntity::getId).collect(Collectors.toList());
return this.removeByIds(ids);
}
/**
* 查询是否存在同月编号 * 查询是否存在同月编号
* @param currentMonth 当月 * @param currentMonth 当月
* @return 存在则返回上一编号否则返回null * @return 存在则返回上一编号否则返回null

32
hzims-service/safeproduct/src/main/java/com/hnac/hzims/safeproduct/service/impl/CarServiceImpl.java

@ -12,12 +12,8 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.hnac.hzims.common.logs.utils.StringUtils; import com.hnac.hzims.common.logs.utils.StringUtils;
import com.hnac.hzims.safeproduct.dto.CarMilesYearDTO; import com.hnac.hzims.safeproduct.dto.CarMilesYearDTO;
import com.hnac.hzims.safeproduct.entity.CarEntity; import com.hnac.hzims.safeproduct.entity.CarEntity;
import com.hnac.hzims.safeproduct.enums.CarMaintenanceStatusEnum;
import com.hnac.hzims.safeproduct.mapper.CarMapper; import com.hnac.hzims.safeproduct.mapper.CarMapper;
import com.hnac.hzims.safeproduct.service.ICarCheckRecordService; import com.hnac.hzims.safeproduct.service.*;
import com.hnac.hzims.safeproduct.service.ICarMaintenanceService;
import com.hnac.hzims.safeproduct.service.ICarService;
import com.hnac.hzims.safeproduct.service.ICarUsedRecordService;
import com.hnac.hzims.safeproduct.vo.CarMilesYearVO; import com.hnac.hzims.safeproduct.vo.CarMilesYearVO;
import org.springblade.core.log.exception.ServiceException; import org.springblade.core.log.exception.ServiceException;
import org.springblade.core.mp.support.Query; import org.springblade.core.mp.support.Query;
@ -55,6 +51,12 @@ public class CarServiceImpl extends ServiceImpl<CarMapper, CarEntity> implements
@Autowired @Autowired
ICarCheckRecordService carCheckRecordService; ICarCheckRecordService carCheckRecordService;
@Autowired
ICarInsuranceService carInsuranceService;
@Autowired
ICarAnnualInspectionService carAnnualInspectionService;
/** /**
* 年度里程数页面 * 年度里程数页面
*/ */
@ -195,15 +197,29 @@ public class CarServiceImpl extends ServiceImpl<CarMapper, CarEntity> implements
// 删除关联维保记录 // 删除关联维保记录
boolean removeCarMaintenance = carMaintenanceService.removeRelativeCarMaintenance(id); boolean removeCarMaintenance = carMaintenanceService.removeRelativeCarMaintenance(id);
if (!removeCarMaintenance) { if (!removeCarMaintenance) {
return false; throw new ServiceException("关联维保记录删除失败");
} }
// 删除关联用车记录 // 删除关联用车记录
boolean removeCarUsedRecord = carUsedRecordService.removeRelativeCarUsedRecord(id); boolean removeCarUsedRecord = carUsedRecordService.removeRelativeCarUsedRecord(id);
if (!removeCarUsedRecord) { if (!removeCarUsedRecord) {
return false; throw new ServiceException("关联用车记录删除失败");
} }
// 删除关联车检记录 // 删除关联车检记录
return carCheckRecordService.removeRelativeCarCheckRecord(id); boolean removeCarCheckRecord = carCheckRecordService.removeRelativeCarCheckRecord(id);
if (!removeCarCheckRecord) {
throw new ServiceException("关联车检记录删除失败");
}
// 删除关联年检记录
boolean removeCarAnnualInspection = carAnnualInspectionService.removeRelativeCarAnnualInspection(id);
if (!removeCarAnnualInspection) {
throw new ServiceException("关联年检记录删除失败");
}
// 删除关联车保记录
boolean removeCarInsurance = carInsuranceService.removeRelativeCarInsurance(id);
if (!removeCarInsurance) {
throw new ServiceException("关联车保记录删除失败");
}
return true;
} }
return false; return false;
} }

44
hzims-service/safeproduct/src/main/resources/db/1.0.2.sql

@ -98,6 +98,7 @@ CREATE TABLE `hzims_test` (
`subject` varchar(50) NOT NULL COMMENT '考试科目', `subject` varchar(50) NOT NULL COMMENT '考试科目',
`proctor` varchar(20) NOT NULL COMMENT '监考人', `proctor` varchar(20) NOT NULL COMMENT '监考人',
`people_name` varchar(1000) DEFAULT '' COMMENT '参考人员', `people_name` varchar(1000) DEFAULT '' COMMENT '参考人员',
`test_method` varchar(50) NOT NULL COMMENT '考试方式',
`img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '考试图片', `img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '考试图片',
`file_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '考试附件', `file_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '考试附件',
`create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人', `create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人',
@ -208,6 +209,7 @@ CREATE TABLE `hzims_hygiene_record` (
`code` varchar(50) NOT NULL COMMENT '编号', `code` varchar(50) NOT NULL COMMENT '编号',
`actual_start_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '实际开始时间', `actual_start_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '实际开始时间',
`actual_end_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '实际结束时间', `actual_end_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '实际结束时间',
`check_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '检查时间',
`check_user` varchar(20) NOT NULL DEFAULT '' COMMENT '检查人', `check_user` varchar(20) NOT NULL DEFAULT '' COMMENT '检查人',
`hygiene_zone_ids` varchar(1000) NOT NULL COMMENT '卫生自查区域id', `hygiene_zone_ids` varchar(1000) NOT NULL COMMENT '卫生自查区域id',
`check_result` mediumtext NOT NULL COMMENT '检查结果', `check_result` mediumtext NOT NULL COMMENT '检查结果',
@ -231,16 +233,16 @@ CREATE TABLE `hzims_car` (
`car_type` varchar(50) NOT NULL COMMENT '型号', `car_type` varchar(50) NOT NULL COMMENT '型号',
`plate_number` varchar(50) NOT NULL COMMENT '车牌号', `plate_number` varchar(50) NOT NULL COMMENT '车牌号',
`registration_time` date NOT NULL COMMENT '上牌时间', `registration_time` date NOT NULL COMMENT '上牌时间',
`insurance_pay_last_time` date NOT NULL COMMENT '上期缴车保时间', `insurance_pay_last_time` date DEFAULT NULL COMMENT '上期缴车保时间',
`insurance_pay_next_time` date NOT NULL COMMENT '下期缴车保时间', `insurance_pay_next_time` date DEFAULT NULL COMMENT '下期缴车保时间',
`insurance_status` varchar(50) NOT NULL COMMENT '保险状态', `insurance_status` varchar(50) NOT NULL DEFAULT 'UNINSURED' COMMENT '保险状态',
`last_annual_inspection_time` date NOT NULL COMMENT '上期年检时间', `last_annual_inspection_time` date DEFAULT NULL COMMENT '上期年检时间',
`next_annual_inspection_time` date NOT NULL COMMENT '下期年检时间', `next_annual_inspection_time` date DEFAULT NULL COMMENT '下期年检时间',
`annual_inspection_status` varchar(50) NOT NULL COMMENT '年检状态', `annual_inspection_status` varchar(50) NOT NULL DEFAULT 'UNFINISHED' COMMENT '年检状态',
`maintenance_last_time` date DEFAULT NULL COMMENT '上期保养时间', `maintenance_last_time` date DEFAULT NULL COMMENT '上期保养时间',
`maintenance_next_time` date DEFAULT NULL COMMENT '下期保养时间', `maintenance_next_time` date DEFAULT NULL COMMENT '下期保养时间',
`maintenance_mileage` decimal(10, 2) DEFAULT NULL COMMENT '保养里程', `maintenance_mileage` decimal(10, 2) DEFAULT NULL COMMENT '保养里程',
`maintenance_status` varchar(50) DEFAULT NULL COMMENT '保养状态', `maintenance_status` varchar(50) NOT NULL DEFAULT 'UNMAINTAINED' COMMENT '保养状态',
`manager_id` bigint(20) DEFAULT NULL COMMENT '车辆管理人id', `manager_id` bigint(20) DEFAULT NULL COMMENT '车辆管理人id',
`manager` varchar(50) NOT NULL COMMENT '车辆管理人', `manager` varchar(50) NOT NULL COMMENT '车辆管理人',
`img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '车辆图片', `img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '车辆图片',
@ -288,7 +290,7 @@ CREATE TABLE `hzims_car_used_record` (
`unit` varchar(50) NOT NULL COMMENT '用车单位', `unit` varchar(50) NOT NULL COMMENT '用车单位',
`used_location` varchar(255) NOT NULL COMMENT '使用地点', `used_location` varchar(255) NOT NULL COMMENT '使用地点',
`user` varchar(20) NOT NULL COMMENT '使用人', `user` varchar(20) NOT NULL COMMENT '使用人',
`remark` mediumtext DEFAULT NULL COMMENT '使用详情', `remark` mediumtext COMMENT '使用详情',
`start_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '使用时间', `start_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '使用时间',
`end_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '收车时间', `end_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '收车时间',
`start_miles` decimal(10, 2) NOT NULL COMMENT '出车公里数', `start_miles` decimal(10, 2) NOT NULL COMMENT '出车公里数',
@ -346,9 +348,8 @@ CREATE TABLE `hzims_car_annual_inspection` (
`car_id` bigint(20) NOT NULL COMMENT '车辆id', `car_id` bigint(20) NOT NULL COMMENT '车辆id',
`code` varchar(50) NOT NULL COMMENT '编号', `code` varchar(50) NOT NULL COMMENT '编号',
`annual_inspection_time` date NOT NULL COMMENT '年检时间', `annual_inspection_time` date NOT NULL COMMENT '年检时间',
`next_annual_inspection_time` date NOT NULL COMMENT '下次年检时间',
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '年检地点', `location` varchar(255) NOT NULL DEFAULT '' COMMENT '年检地点',
`cost` bigint(20) NOT NULL COMMENT '年检费用',
`inspection_manager` varchar(50) NOT NULL DEFAULT '' COMMENT '年检负责人',
`img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '年检图片', `img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '年检图片',
`create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人', `create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人',
`create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门', `create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门',
@ -365,9 +366,8 @@ CREATE TABLE `hzims_car_insurance` (
`car_id` bigint(20) NOT NULL COMMENT '车辆id', `car_id` bigint(20) NOT NULL COMMENT '车辆id',
`code` varchar(50) NOT NULL COMMENT '编号', `code` varchar(50) NOT NULL COMMENT '编号',
`insurance_time` date NOT NULL COMMENT '车保时间', `insurance_time` date NOT NULL COMMENT '车保时间',
`next_insurance_time` date NOT NULL COMMENT '下次车保时间',
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '车保地点', `location` varchar(255) NOT NULL DEFAULT '' COMMENT '车保地点',
`cost` bigint(20) NOT NULL COMMENT '车保费用',
`insurance_manager` varchar(50) NOT NULL DEFAULT '' COMMENT '车保负责人',
`img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '车保图片', `img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '车保图片',
`create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人', `create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人',
`create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门', `create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门',
@ -394,7 +394,25 @@ CREATE TABLE `hzims_device` (
`inspection_last_time` date DEFAULT NULL COMMENT '上次检验日期', `inspection_last_time` date DEFAULT NULL COMMENT '上次检验日期',
`manager_id` bigint(20) DEFAULT NULL COMMENT '设备管理人id', `manager_id` bigint(20) DEFAULT NULL COMMENT '设备管理人id',
`manager` varchar(50) NOT NULL DEFAULT '' COMMENT '设备管理人', `manager` varchar(50) NOT NULL DEFAULT '' COMMENT '设备管理人',
`device_status` varchar(20) NOT NULL DEFAULT 'NORMAL' COMMENT '设备状态', `device_status` varchar(20) NOT NULL DEFAULT 'EXPIRED' COMMENT '设备状态',
`create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人',
`create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_user` bigint(20) DEFAULT '-1' COMMENT '更新人',
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
`status` int(2) NOT NULL DEFAULT '1' COMMENT '状态',
`is_deleted` int(2) NOT NULL DEFAULT '0' COMMENT '逻辑删除状态:0-未删除,1-删除',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=INNODB CHARACTER SET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='特种设备表' ROW_FORMAT=Dynamic;
CREATE TABLE `hzims_device_inspection` (
`id` bigint(20) NOT NULL COMMENT '主键id',
`device_id` bigint(20) NOT NULL COMMENT '设备id',
`inspection_time` date NOT NULL COMMENT '设备检验时间',
`last_inspection_time` date NOT NULL COMMENT '上次检验时间',
`next_inspection_time` date NOT NULL COMMENT '下次检验时间',
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '设备检验地点',
`img_path` varchar(1000) NOT NULL DEFAULT '' COMMENT '设备检验图片',
`create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人', `create_user` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建人',
`create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门', `create_dept` bigint(20) NOT NULL DEFAULT '-1' COMMENT '创建部门',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',

Loading…
Cancel
Save