6 changed files with 297 additions and 0 deletions
@ -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; |
||||
|
||||
} |
@ -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<List<BasicCarModelEntity>> getCarModelList(Query query) { |
||||
return R.data(basicCarModelService.list()); |
||||
} |
||||
|
||||
@PostMapping("/save") |
||||
public R<String> saveCarModel(@Valid @RequestBody @Validated BasicCarModelDTO basicCarModelDTO) { |
||||
String res = basicCarModelService.saveCarModel(basicCarModelDTO); |
||||
return "".equals(res) ? R.success("保存成功") : R.fail(res); |
||||
} |
||||
} |
@ -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; |
||||
|
||||
} |
@ -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<BasicCarModelEntity> { |
||||
|
||||
|
||||
} |
@ -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<BasicCarModelEntity> { |
||||
|
||||
|
||||
String saveCarModel(BasicCarModelDTO basicCarModelDTO); |
||||
} |
@ -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<BasicCarModelMapper, BasicCarModelEntity> 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<DictBiz> list = DictBizCache.getList(CarTypeDictCode); |
||||
List<String> codes = list.stream().map(DictBiz::getDictKey).collect(Collectors.toList()); |
||||
|
||||
if (!codes.contains(basicCarModelDTO.getVehicleModel())) { |
||||
return "车辆类型不存在"; |
||||
} |
||||
|
||||
LambdaQueryWrapper<BasicCarModelEntity> 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 "保存失败"; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue