From c6f339377213621bcc9b768f4f38a890b32eabe0 Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Fri, 29 Nov 2024 11:10:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A6=E5=9E=8B=E8=B4=B9=E7=94=A8=E5=85=B3?= =?UTF-8?q?=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/controller/app/AppController.java | 13 ---- .../controller/app/AppVerifyController.java | 21 +++++-- .../controller/system/EModelController.java | 5 +- .../src/main/resources/application.yml | 2 +- .../com/ruoyi/system/domain/model/EModel.java | 3 + .../system/domain/modelRule/EModelRule.java | 50 +++++++++++++++ .../ruoyi/system/mapper/EModelRuleMapper.java | 62 +++++++++++++++++++ .../ruoyi/system/service/IEModelService.java | 5 +- .../service/impl/EModelServiceImpl.java | 47 ++++++++++---- .../mapper/system/EFeeRuleMapper.xml | 2 +- .../mapper/system/EModelRuleMapper.xml | 57 +++++++++++++++++ 11 files changed, 232 insertions(+), 35 deletions(-) create mode 100644 eride-system/src/main/java/com/ruoyi/system/domain/modelRule/EModelRule.java create mode 100644 eride-system/src/main/java/com/ruoyi/system/mapper/EModelRuleMapper.java create mode 100644 eride-system/src/main/resources/mapper/system/EModelRuleMapper.xml diff --git a/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java b/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java index 67b893e..c945361 100644 --- a/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java +++ b/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java @@ -152,19 +152,6 @@ public class AppController extends BaseController // return success(storeService.selectSmStoreList(storeQuery)); // } - /** - * 根据车型id获取详情 - */ - @GetMapping("/getModelById") - public AjaxResult getModelById(Long modelId) - { - logger.info("根据车型id获取详情:【modelId="+modelId+"】"); - if(modelId==null){ - return error("车型id[modelId]未传"); - } - return success(modelService.selectEModelByModelId(modelId)); - } - // /** // * 根据定位获取附近店铺列表 // */ diff --git a/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java b/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java index 6b4e7b4..8512042 100644 --- a/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java +++ b/eride-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java @@ -610,7 +610,7 @@ public class AppVerifyController extends BaseController } return Boolean.TRUE; }); - if(!execute)throw new ServiceException("【改价】失败"); + if(Boolean.FALSE.equals(execute))throw new ServiceException("【改价】失败"); return toAjax(1); } @@ -957,6 +957,19 @@ public class AppVerifyController extends BaseController return toAjax(1); } + /** + * 根据车型id获取详情 + */ + @GetMapping("/getModelById") + public AjaxResult getModelById(Long modelId) + { + logger.info("根据车型id获取详情:【modelId={}】", modelId); + if(modelId==null){ + return error("车型id[modelId]未传"); + } + return success(modelService.selectEModelByModelId(modelId)); + } + /** * 查询车辆型号列表 */ @@ -973,7 +986,7 @@ public class AppVerifyController extends BaseController */ @Log(title = "车辆型号", businessType = BusinessType.INSERT) @PostMapping("/model") - public AjaxResult addModel(@RequestBody EModel eModel) + public AjaxResult addModel(@RequestBody EModelQuery eModel) { logger.info("新增车辆型号:【{}】", JSON.toJSONString(eModel)); return toAjax(modelService.insertEModel(eModel)); @@ -984,7 +997,7 @@ public class AppVerifyController extends BaseController */ @Log(title = "车辆型号", businessType = BusinessType.UPDATE) @PutMapping("/model") - public AjaxResult editModel(@RequestBody EModel etModel) + public AjaxResult editModel(@RequestBody EModelQuery etModel) { logger.info("修改车辆型号:【{}】", JSON.toJSONString(etModel)); return toAjax(modelService.updateEModel(etModel)); @@ -999,7 +1012,7 @@ public class AppVerifyController extends BaseController { logger.info("删除车辆型号:【{}】", JSON.toJSONString(modelIds)); for (Long modelId : modelIds){ - EModel model = new EModel(); + EModelQuery model = new EModelQuery(); model.setDelFlag("1"); model.setModelId(modelId); int i = modelService.updateEModel(model); diff --git a/eride-admin/src/main/java/com/ruoyi/web/controller/system/EModelController.java b/eride-admin/src/main/java/com/ruoyi/web/controller/system/EModelController.java index 63c005a..734d9fa 100644 --- a/eride-admin/src/main/java/com/ruoyi/web/controller/system/EModelController.java +++ b/eride-admin/src/main/java/com/ruoyi/web/controller/system/EModelController.java @@ -7,6 +7,7 @@ import com.ruoyi.common.core.page.TableDataInfo; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.system.domain.model.EModel; +import com.ruoyi.system.domain.model.EModelQuery; import com.ruoyi.system.domain.model.EModelVO; import com.ruoyi.system.service.IEModelService; import org.springframework.beans.factory.annotation.Autowired; @@ -70,7 +71,7 @@ public class EModelController extends BaseController @PreAuthorize("@ss.hasPermi('system:model:add')") @Log(title = "车辆型号", businessType = BusinessType.INSERT) @PostMapping - public AjaxResult add(@RequestBody EModel eModel) + public AjaxResult add(@RequestBody EModelQuery eModel) { return toAjax(eModelService.insertEModel(eModel)); } @@ -81,7 +82,7 @@ public class EModelController extends BaseController @PreAuthorize("@ss.hasPermi('system:model:edit')") @Log(title = "车辆型号", businessType = BusinessType.UPDATE) @PutMapping - public AjaxResult edit(@RequestBody EModel etModel) + public AjaxResult edit(@RequestBody EModelQuery etModel) { return toAjax(eModelService.updateEModel(etModel)); } diff --git a/eride-admin/src/main/resources/application.yml b/eride-admin/src/main/resources/application.yml index 8a49902..c9c88c7 100644 --- a/eride-admin/src/main/resources/application.yml +++ b/eride-admin/src/main/resources/application.yml @@ -16,7 +16,7 @@ ruoyi: # 开发环境配置 server: # 服务器的HTTP端口,默认为8080 - port: 8080 + port: 8100 servlet: # 应用的访问路径 context-path: / diff --git a/eride-system/src/main/java/com/ruoyi/system/domain/model/EModel.java b/eride-system/src/main/java/com/ruoyi/system/domain/model/EModel.java index 039bd36..8b22cf3 100644 --- a/eride-system/src/main/java/com/ruoyi/system/domain/model/EModel.java +++ b/eride-system/src/main/java/com/ruoyi/system/domain/model/EModel.java @@ -5,6 +5,7 @@ import com.ruoyi.common.core.domain.BaseEntity; import lombok.Data; import java.math.BigDecimal; +import java.util.List; /** * 车辆型号对象 et_model @@ -59,5 +60,7 @@ public class EModel extends BaseEntity /** 删除标志(0代表存在 2代表删除) */ private String delFlag; + /** 商户id */ + private Long merchantId; } diff --git a/eride-system/src/main/java/com/ruoyi/system/domain/modelRule/EModelRule.java b/eride-system/src/main/java/com/ruoyi/system/domain/modelRule/EModelRule.java new file mode 100644 index 0000000..57e2f58 --- /dev/null +++ b/eride-system/src/main/java/com/ruoyi/system/domain/modelRule/EModelRule.java @@ -0,0 +1,50 @@ +package com.ruoyi.system.domain.modelRule; + +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 车型和收费方式关联对象 e_model_rule + * + * @author qzz + * @date 2024-11-29 + */ +public class EModelRule extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 车型id */ + private Long modelId; + + /** 收费模版id */ + private Long ruleId; + + public void setModelId(Long modelId) + { + this.modelId = modelId; + } + + public Long getModelId() + { + return modelId; + } + public void setRuleId(Long ruleId) + { + this.ruleId = ruleId; + } + + public Long getRuleId() + { + return ruleId; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("modelId", getModelId()) + .append("ruleId", getRuleId()) + .toString(); + } +} diff --git a/eride-system/src/main/java/com/ruoyi/system/mapper/EModelRuleMapper.java b/eride-system/src/main/java/com/ruoyi/system/mapper/EModelRuleMapper.java new file mode 100644 index 0000000..d5ccd55 --- /dev/null +++ b/eride-system/src/main/java/com/ruoyi/system/mapper/EModelRuleMapper.java @@ -0,0 +1,62 @@ +package com.ruoyi.system.mapper; + +import com.ruoyi.system.domain.modelRule.EModelRule; + +import java.util.List; + +/** + * 车型和收费方式关联Mapper接口 + * + * @author qzz + * @date 2024-11-29 + */ +public interface EModelRuleMapper +{ + /** + * 查询车型和收费方式关联 + * + * @param modelId 车型和收费方式关联主键 + * @return 车型和收费方式关联 + */ + public EModelRule selectEModelRuleByModelId(Long modelId); + + /** + * 查询车型和收费方式关联列表 + * + * @param eModelRule 车型和收费方式关联 + * @return 车型和收费方式关联集合 + */ + public List selectEModelRuleList(EModelRule eModelRule); + + /** + * 新增车型和收费方式关联 + * + * @param eModelRule 车型和收费方式关联 + * @return 结果 + */ + public int insertEModelRule(EModelRule eModelRule); + + /** + * 修改车型和收费方式关联 + * + * @param eModelRule 车型和收费方式关联 + * @return 结果 + */ + public int updateEModelRule(EModelRule eModelRule); + + /** + * 删除车型和收费方式关联 + * + * @param modelId 车型和收费方式关联主键 + * @return 结果 + */ + public int deleteEModelRuleByModelId(Long modelId); + + /** + * 批量删除车型和收费方式关联 + * + * @param modelIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteEModelRuleByModelIds(Long[] modelIds); +} diff --git a/eride-system/src/main/java/com/ruoyi/system/service/IEModelService.java b/eride-system/src/main/java/com/ruoyi/system/service/IEModelService.java index e6f2c53..55a9871 100644 --- a/eride-system/src/main/java/com/ruoyi/system/service/IEModelService.java +++ b/eride-system/src/main/java/com/ruoyi/system/service/IEModelService.java @@ -2,6 +2,7 @@ package com.ruoyi.system.service; import com.ruoyi.system.domain.EFunction; import com.ruoyi.system.domain.model.EModel; +import com.ruoyi.system.domain.model.EModelQuery; import com.ruoyi.system.domain.model.EModelVO; import java.util.List; @@ -36,7 +37,7 @@ public interface IEModelService * @param etModel 车辆型号 * @return 结果 */ - public int insertEModel(EModel etModel); + public int insertEModel(EModelQuery etModel); /** * 修改车辆型号 @@ -44,7 +45,7 @@ public interface IEModelService * @param etModel 车辆型号 * @return 结果 */ - public int updateEModel(EModel etModel); + public int updateEModel(EModelQuery etModel); /** * 批量删除车辆型号 diff --git a/eride-system/src/main/java/com/ruoyi/system/service/impl/EModelServiceImpl.java b/eride-system/src/main/java/com/ruoyi/system/service/impl/EModelServiceImpl.java index 4a50f9c..1493eda 100644 --- a/eride-system/src/main/java/com/ruoyi/system/service/impl/EModelServiceImpl.java +++ b/eride-system/src/main/java/com/ruoyi/system/service/impl/EModelServiceImpl.java @@ -2,15 +2,17 @@ package com.ruoyi.system.service.impl; import com.ruoyi.common.annotation.DataScope; import com.ruoyi.common.utils.DateUtils; +import com.ruoyi.common.utils.ServletUtils; import com.ruoyi.system.domain.EFunction; import com.ruoyi.system.domain.device.EDevice; import com.ruoyi.system.domain.model.EModel; +import com.ruoyi.system.domain.model.EModelQuery; import com.ruoyi.system.domain.model.EModelVO; +import com.ruoyi.system.domain.modelRule.EModelRule; +import com.ruoyi.system.domain.rule.EFeeRule; import com.ruoyi.system.mapper.EModelMapper; -import com.ruoyi.system.service.IEBrandService; -import com.ruoyi.system.service.IEDeviceService; -import com.ruoyi.system.service.IEModelService; -import com.ruoyi.system.service.IEFunctionService; +import com.ruoyi.system.mapper.EModelRuleMapper; +import com.ruoyi.system.service.*; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; @@ -42,6 +44,12 @@ public class EModelServiceImpl implements IEModelService @Autowired private IEBrandService brandService; + @Autowired + private IEFeeRuleService feeRuleService; + + @Autowired + private EModelRuleMapper eModelRuleMapper; + /** * 查询车辆型号 @@ -53,10 +61,9 @@ public class EModelServiceImpl implements IEModelService public EModelVO selectEModelByModelId(Long modelId) { EModelVO etModel = eModelMapper.selectEModelByModelId(modelId); -// if(ObjectUtil.isNotNull(etModel)){ -// Integer allNum = eDeviceService.selectCountByModelId(modelId); -// etModel.setDeviceNum(allNum); -// } + if(etModel != null){ + etModel.setFeeRulesIds(feeRuleService.selectRlFeeRuleLongListByModelId(etModel.getModelId())); + } return etModel; } @@ -82,16 +89,29 @@ public class EModelServiceImpl implements IEModelService @SneakyThrows @Override @Transactional - public int insertEModel(EModel etModel) + public int insertEModel(EModelQuery etModel) { etModel.setCreateTime(DateUtils.getNowDate()); if(etModel.getBrandId() != null){ etModel.setBrandName(brandService.selectEBrandByBrandId(etModel.getBrandId()).getName()); } int i = eModelMapper.insertEModel(etModel); + saveModelRule(etModel); return i; } + private void saveModelRule(EModelQuery etModel) { + if(etModel.getFeeRulesIds() != null){ + Long[] feeRulesIds = etModel.getFeeRulesIds(); + for (Long feeRuleId:feeRulesIds){ + EModelRule eModelRule = new EModelRule(); + eModelRule.setModelId(etModel.getModelId()); + eModelRule.setRuleId(feeRuleId); + int i1 = eModelRuleMapper.insertEModelRule(eModelRule); + } + } + } + /** * 修改车辆型号 * @@ -101,14 +121,17 @@ public class EModelServiceImpl implements IEModelService @SneakyThrows @Override @Transactional - public int updateEModel(EModel etModel) + public int updateEModel(EModelQuery etModel) { etModel.setUpdateTime(DateUtils.getNowDate()); if(etModel.getBrandId() != null){ etModel.setBrandName(brandService.selectEBrandByBrandId(etModel.getBrandId()).getName()); } - int i = eModelMapper.updateEModel(etModel); - return i; + int i = eModelRuleMapper.deleteEModelRuleByModelId(etModel.getModelId()); + if(i>0){ + saveModelRule(etModel); + } + return eModelMapper.updateEModel(etModel); } /** diff --git a/eride-system/src/main/resources/mapper/system/EFeeRuleMapper.xml b/eride-system/src/main/resources/mapper/system/EFeeRuleMapper.xml index a4ad2b2..00589f2 100644 --- a/eride-system/src/main/resources/mapper/system/EFeeRuleMapper.xml +++ b/eride-system/src/main/resources/mapper/system/EFeeRuleMapper.xml @@ -38,7 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" diff --git a/eride-system/src/main/resources/mapper/system/EModelRuleMapper.xml b/eride-system/src/main/resources/mapper/system/EModelRuleMapper.xml new file mode 100644 index 0000000..97df85c --- /dev/null +++ b/eride-system/src/main/resources/mapper/system/EModelRuleMapper.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + select model_id, rule_id from e_model_rule + + + + + + + + insert into e_model_rule + + model_id, + rule_id, + + + #{modelId}, + #{ruleId}, + + + + + update e_model_rule + + rule_id = #{ruleId}, + + where model_id = #{modelId} + + + + delete from e_model_rule where model_id = #{modelId} + + + + delete from e_model_rule where model_id in + + #{modelId} + + + \ No newline at end of file