From 6e41cd4fecfd67d068b2163d93899ae4d7b403bd Mon Sep 17 00:00:00 2001 From: chenlong Date: Thu, 8 Aug 2024 17:40:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E8=BD=A6=E5=9E=8B=E7=9A=84=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E6=95=B0=E6=8D=AE=E5=8C=B9=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/entity/BasicCarModelEntity.java | 96 +++++++++++++++++++ .../controller/BasicCarModelController.java | 37 +++++++ .../com/logpm/basic/dto/BasicCarModelDTO.java | 13 +++ .../basic/mapper/BasicCarModelMapper.java | 32 +++++++ .../basic/service/IBasicCarModelService.java | 34 +++++++ .../impl/BasicCarModelServiceImpl.java | 85 ++++++++++++++++ 6 files changed, 297 insertions(+) create mode 100644 blade-service-api/logpm-basic-api/src/main/java/com/logpm/basic/entity/BasicCarModelEntity.java create mode 100644 blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicCarModelController.java create mode 100644 blade-service/logpm-basic/src/main/java/com/logpm/basic/dto/BasicCarModelDTO.java create mode 100644 blade-service/logpm-basic/src/main/java/com/logpm/basic/mapper/BasicCarModelMapper.java create mode 100644 blade-service/logpm-basic/src/main/java/com/logpm/basic/service/IBasicCarModelService.java create mode 100644 blade-service/logpm-basic/src/main/java/com/logpm/basic/service/impl/BasicCarModelServiceImpl.java diff --git a/blade-service-api/logpm-basic-api/src/main/java/com/logpm/basic/entity/BasicCarModelEntity.java b/blade-service-api/logpm-basic-api/src/main/java/com/logpm/basic/entity/BasicCarModelEntity.java new file mode 100644 index 000000000..2bbf789ca --- /dev/null +++ b/blade-service-api/logpm-basic-api/src/main/java/com/logpm/basic/entity/BasicCarModelEntity.java @@ -0,0 +1,96 @@ +/* + * 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 com.logpm.basic.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +import javax.validation.constraints.Max; +import javax.validation.constraints.Min; +import javax.validation.constraints.Size; + +/** + * 车型基础信息 实体类 + * + * @author lmy + * @since 2023-05-24 + */ +@Data +@TableName("logpm_basic_car_model") +@ApiModel(value = "BasicCarModel对象", description = "车型基础信息") +@EqualsAndHashCode(callSuper = true) +public class BasicCarModelEntity extends TenantEntity { + + /** + * 预留1 + */ + @ApiModelProperty(value = "预留1") + private String reserve1; + /** + * 预留2 + */ + @ApiModelProperty(value = "预留2") + private String reserve2; + /** + * 预留3 + */ + @ApiModelProperty(value = "预留3") + private String reserve3; + /** + * 预留4 + */ + @ApiModelProperty(value = "预留4") + private String reserve4; + /** + * 预留5 + */ + @ApiModelProperty(value = "预留5") + private String reserve5; + + @ApiModelProperty(value = "车辆类型") + private String vehicleModel; + + @Min(value = 0, message = "车辆类型车辆核定体积最小为:0") + @Max(value = 64, message = "车辆类型长度最大为:64") + @ApiModelProperty(value = "车长") + private Float vehicleCommander; + + @Min(value = 0, message = "车辆类型外廓高最小为:0") + @Max(value = 64, message = "车辆类型外廓高最大为:64") + @ApiModelProperty(value = "外廓高") + private Float vehicleHeight; + + @Min(value = 0, message = "车辆类型车辆核定体积最小为:0") + @Max(value = 999999, message = "车辆类型车辆核定体积最大为:999999") + @ApiModelProperty(value = "核定体积") + private Float approvedVolume; + + @Min(value = 0, message = "车辆类型车辆总质量最小为:0") + @Max(value = 999999, message = "车辆类型车辆总质量最大为:999999") + @ApiModelProperty(value = "车辆总质量") + private Float vehicleQuality; + + @Min(value = 0, message = "车辆类型车辆整备质量最小为:0") + @Max(value = 999999, message = "车辆类型车辆整备质量最大为:999999") + @ApiModelProperty(value = "整备质量") + private Float curbWeight; + +} diff --git a/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicCarModelController.java b/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicCarModelController.java new file mode 100644 index 000000000..eb3509acc --- /dev/null +++ b/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicCarModelController.java @@ -0,0 +1,37 @@ +package com.logpm.basic.controller; + +import com.logpm.basic.dto.BasicCarModelDTO; +import com.logpm.basic.entity.BasicCarModelEntity; +import com.logpm.basic.service.IBasicCarModelService; +import io.swagger.annotations.Api; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springblade.core.boot.ctrl.BladeController; +import org.springblade.core.mp.support.Query; +import org.springblade.core.tool.api.R; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; +import java.util.List; + +@RestController +@AllArgsConstructor +@RequestMapping("/carModel") +@Api(value = "车型默认数据", tags = "车型默认数据") +@Slf4j +public class BasicCarModelController extends BladeController { + + private IBasicCarModelService basicCarModelService; + + @GetMapping("/list") + public R> getCarModelList(Query query) { + return R.data(basicCarModelService.list()); + } + + @PostMapping("/save") + public R saveCarModel(@Valid @RequestBody @Validated BasicCarModelDTO basicCarModelDTO) { + String res = basicCarModelService.saveCarModel(basicCarModelDTO); + return "".equals(res) ? R.success("保存成功") : R.fail(res); + } +} diff --git a/blade-service/logpm-basic/src/main/java/com/logpm/basic/dto/BasicCarModelDTO.java b/blade-service/logpm-basic/src/main/java/com/logpm/basic/dto/BasicCarModelDTO.java new file mode 100644 index 000000000..93a4531b7 --- /dev/null +++ b/blade-service/logpm-basic/src/main/java/com/logpm/basic/dto/BasicCarModelDTO.java @@ -0,0 +1,13 @@ +package com.logpm.basic.dto; + +import com.logpm.basic.entity.BasicCarModelEntity; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@Data +@EqualsAndHashCode(callSuper = true) +public class BasicCarModelDTO extends BasicCarModelEntity { + + private static final long serialVersionUID = 1L; + +} diff --git a/blade-service/logpm-basic/src/main/java/com/logpm/basic/mapper/BasicCarModelMapper.java b/blade-service/logpm-basic/src/main/java/com/logpm/basic/mapper/BasicCarModelMapper.java new file mode 100644 index 000000000..870ec67a5 --- /dev/null +++ b/blade-service/logpm-basic/src/main/java/com/logpm/basic/mapper/BasicCarModelMapper.java @@ -0,0 +1,32 @@ +/* + * 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 com.logpm.basic.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.logpm.basic.entity.BasicCarModelEntity; + + +/** + * 车辆型号 Mapper 接口 + * + * @author lmy + * @since 2023-05-24 + */ +public interface BasicCarModelMapper extends BaseMapper { + + +} diff --git a/blade-service/logpm-basic/src/main/java/com/logpm/basic/service/IBasicCarModelService.java b/blade-service/logpm-basic/src/main/java/com/logpm/basic/service/IBasicCarModelService.java new file mode 100644 index 000000000..9d95fa818 --- /dev/null +++ b/blade-service/logpm-basic/src/main/java/com/logpm/basic/service/IBasicCarModelService.java @@ -0,0 +1,34 @@ +/* + * 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 com.logpm.basic.service; + +import com.logpm.basic.dto.BasicCarModelDTO; +import com.logpm.basic.entity.BasicCarModelEntity; +import org.springblade.core.mp.base.BaseService; + + +/** + * 提货线路中间表 服务类 + * + * @author lmy + * @since 2023-05-25 + */ +public interface IBasicCarModelService extends BaseService { + + + String saveCarModel(BasicCarModelDTO basicCarModelDTO); +} diff --git a/blade-service/logpm-basic/src/main/java/com/logpm/basic/service/impl/BasicCarModelServiceImpl.java b/blade-service/logpm-basic/src/main/java/com/logpm/basic/service/impl/BasicCarModelServiceImpl.java new file mode 100644 index 000000000..ad1a67ffb --- /dev/null +++ b/blade-service/logpm-basic/src/main/java/com/logpm/basic/service/impl/BasicCarModelServiceImpl.java @@ -0,0 +1,85 @@ +/* + * 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 com.logpm.basic.service.impl; + + +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import com.logpm.basic.dto.BasicCarModelDTO; +import com.logpm.basic.entity.BasicCarModelEntity; +import com.logpm.basic.mapper.BasicCarModelMapper; +import com.logpm.basic.service.IBasicCarModelService; +import lombok.extern.slf4j.Slf4j; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springblade.system.cache.DictBizCache; +import org.springblade.system.entity.DictBiz; +import org.springframework.stereotype.Service; + +import javax.management.Query; +import java.util.List; +import java.util.stream.Collectors; + +/** + * 车辆型号 服务实现类 + * + * @author lmy + * @since 2023-05-25 + */ +@Service +@Slf4j +public class BasicCarModelServiceImpl extends BaseServiceImpl implements IBasicCarModelService { + + private final String CarTypeDictCode = "basic_vehicle_model"; + + @Override + public String saveCarModel(BasicCarModelDTO basicCarModelDTO) { + try { + if (basicCarModelDTO == null) { + return "数据不能为空"; + } + + if (basicCarModelDTO.getVehicleModel() == null || basicCarModelDTO.getVehicleModel().isEmpty()) { + return "车辆类型不能为空"; + } + + List list = DictBizCache.getList(CarTypeDictCode); + List codes = list.stream().map(DictBiz::getDictKey).collect(Collectors.toList()); + + if (!codes.contains(basicCarModelDTO.getVehicleModel())) { + return "车辆类型不存在"; + } + + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper<>(); + lambdaQueryWrapper.eq(BasicCarModelEntity::getVehicleModel, basicCarModelDTO.getVehicleModel()); + boolean isUpdate = false; + if (basicCarModelDTO.getId() != null && !basicCarModelDTO.getId().equals(0L)) { + lambdaQueryWrapper.ne(BasicCarModelEntity::getId, basicCarModelDTO.getId()); + isUpdate = true; + } + BasicCarModelEntity have = getOne(lambdaQueryWrapper); + if (have != null) { + return "车辆类型已存在"; + } + + boolean res = isUpdate ? updateById(basicCarModelDTO) : save(basicCarModelDTO); + return res ? "" : "保存失败"; + } catch (Exception e) { + log.error("车辆模型保存》系统异常", e); + return "保存失败"; + } + } +}