28 changed files with 965 additions and 58 deletions
@ -0,0 +1,80 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import java.util.Date; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import org.springblade.core.tenant.mp.TenantEntity; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@TableName("logpm_basicdata_drivermiddle") |
||||||
|
@ApiModel(value = "BasicdataDrivermiddle对象", description = "司机中间表") |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataDrivermiddleEntity 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; |
||||||
|
/** |
||||||
|
* 司机表ID |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "司机表ID") |
||||||
|
private Long driverId; |
||||||
|
/** |
||||||
|
* 车辆表ID |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "车辆表ID") |
||||||
|
private Long brandId; |
||||||
|
/** |
||||||
|
* zhufuztai |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "zhufuztai") |
||||||
|
private String state; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,50 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.feign; |
||||||
|
|
||||||
|
import org.springblade.common.constant.ModuleNameConstant; |
||||||
|
import org.springblade.core.mp.support.BladePage; |
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 Feign接口类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@FeignClient( |
||||||
|
value = ModuleNameConstant.APPLICATION_BASICDATA_NAME |
||||||
|
) |
||||||
|
public interface IBasicdataDrivermiddleClient { |
||||||
|
|
||||||
|
String API_PREFIX = "drivermiddle/client"; |
||||||
|
String TOP = API_PREFIX + "/top"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取司机中间表列表 |
||||||
|
* |
||||||
|
* @param current 页号 |
||||||
|
* @param size 页数 |
||||||
|
* @return BladePage |
||||||
|
*/ |
||||||
|
@GetMapping(TOP) |
||||||
|
BladePage<BasicdataDrivermiddleEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.vo; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import org.springblade.core.tool.node.INode; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 视图实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataDrivermiddleVO extends BasicdataDrivermiddleEntity { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,150 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.controller; |
||||||
|
|
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
import org.springblade.core.secure.BladeUser; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataDrivermiddleVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataDrivermiddleExcel; |
||||||
|
import com.logpm.basicdata.service.IBasicdataDrivermiddleService; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.tool.utils.DateUtil; |
||||||
|
import org.springblade.core.excel.util.ExcelUtil; |
||||||
|
import org.springblade.core.tool.constant.BladeConstant; |
||||||
|
import springfox.documentation.annotations.ApiIgnore; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.List; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 控制器 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("drivermiddle/basicdataDrivermiddle") |
||||||
|
@Api(value = "司机中间表", tags = "司机中间表接口") |
||||||
|
public class BasicdataDrivermiddleController extends BladeController { |
||||||
|
|
||||||
|
private final IBasicdataDrivermiddleService basicdataDrivermiddleService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 详情 |
||||||
|
*/ |
||||||
|
@GetMapping("/detail") |
||||||
|
@ApiOperationSupport(order = 1) |
||||||
|
@ApiOperation(value = "详情", notes = "传入basicdataDrivermiddle") |
||||||
|
public R<BasicdataDrivermiddleEntity> detail(BasicdataDrivermiddleEntity basicdataDrivermiddle) { |
||||||
|
BasicdataDrivermiddleEntity detail = basicdataDrivermiddleService.getOne(Condition.getQueryWrapper(basicdataDrivermiddle)); |
||||||
|
return R.data(detail); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 司机中间表 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
@ApiOperation(value = "分页", notes = "传入basicdataDrivermiddle") |
||||||
|
public R<IPage<BasicdataDrivermiddleEntity>> list(@ApiIgnore @RequestParam Map<String, Object> basicdataDrivermiddle, Query query) { |
||||||
|
IPage<BasicdataDrivermiddleEntity> pages = basicdataDrivermiddleService.page(Condition.getPage(query), Condition.getQueryWrapper(basicdataDrivermiddle, BasicdataDrivermiddleEntity.class)); |
||||||
|
return R.data(pages); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 自定义分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/page") |
||||||
|
@ApiOperationSupport(order = 3) |
||||||
|
@ApiOperation(value = "分页", notes = "传入basicdataDrivermiddle") |
||||||
|
public R<IPage<BasicdataDrivermiddleVO>> page(BasicdataDrivermiddleVO basicdataDrivermiddle, Query query) { |
||||||
|
IPage<BasicdataDrivermiddleVO> pages = basicdataDrivermiddleService.selectBasicdataDrivermiddlePage(Condition.getPage(query), basicdataDrivermiddle); |
||||||
|
return R.data(pages); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/save") |
||||||
|
@ApiOperationSupport(order = 4) |
||||||
|
@ApiOperation(value = "新增", notes = "传入basicdataDrivermiddle") |
||||||
|
public R save(@Valid @RequestBody BasicdataDrivermiddleEntity basicdataDrivermiddle) { |
||||||
|
return R.status(basicdataDrivermiddleService.save(basicdataDrivermiddle)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperationSupport(order = 5) |
||||||
|
@ApiOperation(value = "修改", notes = "传入basicdataDrivermiddle") |
||||||
|
public R update(@Valid @RequestBody BasicdataDrivermiddleEntity basicdataDrivermiddle) { |
||||||
|
return R.status(basicdataDrivermiddleService.updateById(basicdataDrivermiddle)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 新增或修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/submit") |
||||||
|
@ApiOperationSupport(order = 6) |
||||||
|
@ApiOperation(value = "新增或修改", notes = "传入basicdataDrivermiddle") |
||||||
|
public R submit(@Valid @RequestBody BasicdataDrivermiddleEntity basicdataDrivermiddle) { |
||||||
|
return R.status(basicdataDrivermiddleService.saveOrUpdate(basicdataDrivermiddle)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/remove") |
||||||
|
@ApiOperationSupport(order = 7) |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(basicdataDrivermiddleService.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 导出数据 |
||||||
|
*/ |
||||||
|
@GetMapping("/export-basicdataDrivermiddle") |
||||||
|
@ApiOperationSupport(order = 9) |
||||||
|
@ApiOperation(value = "导出数据", notes = "传入basicdataDrivermiddle") |
||||||
|
public void exportBasicdataDrivermiddle(@ApiIgnore @RequestParam Map<String, Object> basicdataDrivermiddle, BladeUser bladeUser, HttpServletResponse response) { |
||||||
|
QueryWrapper<BasicdataDrivermiddleEntity> queryWrapper = Condition.getQueryWrapper(basicdataDrivermiddle, BasicdataDrivermiddleEntity.class); |
||||||
|
//if (!AuthUtil.isAdministrator()) {
|
||||||
|
// queryWrapper.lambda().eq(BasicdataDrivermiddle::getTenantId, bladeUser.getTenantId());
|
||||||
|
//}
|
||||||
|
queryWrapper.lambda().eq(BasicdataDrivermiddleEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||||
|
List<BasicdataDrivermiddleExcel> list = basicdataDrivermiddleService.exportBasicdataDrivermiddle(queryWrapper); |
||||||
|
ExcelUtil.export(response, "司机中间表数据" + DateUtil.time(), "司机中间表数据表", list, BasicdataDrivermiddleExcel.class); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -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.basicdata.dto; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 数据传输对象实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataDrivermiddleDTO extends BasicdataDrivermiddleEntity { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,105 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.excel; |
||||||
|
|
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||||
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 Excel实体类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class BasicdataDrivermiddleExcel implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 租户号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("租户号") |
||||||
|
private String tenantId; |
||||||
|
/** |
||||||
|
* 是否已删除 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("是否已删除") |
||||||
|
private Integer isDeleted; |
||||||
|
/** |
||||||
|
* 预留1 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留1") |
||||||
|
private String reserve1; |
||||||
|
/** |
||||||
|
* 预留2 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留2") |
||||||
|
private String reserve2; |
||||||
|
/** |
||||||
|
* 预留3 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留3") |
||||||
|
private String reserve3; |
||||||
|
/** |
||||||
|
* 预留4 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留4") |
||||||
|
private String reserve4; |
||||||
|
/** |
||||||
|
* 预留5 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留5") |
||||||
|
private String reserve5; |
||||||
|
/** |
||||||
|
* 司机表ID |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("司机表ID") |
||||||
|
private Long driverId; |
||||||
|
/** |
||||||
|
* 车辆表ID |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("车辆表ID") |
||||||
|
private Long brandId; |
||||||
|
/** |
||||||
|
* zhufuztai |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("zhufuztai") |
||||||
|
private String state; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,53 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.feign; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.support.BladePage; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import com.logpm.basicdata.service.IBasicdataDrivermiddleService; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
import springfox.documentation.annotations.ApiIgnore; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 Feign实现类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@ApiIgnore() |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
public class BasicdataDrivermiddleClient implements IBasicdataDrivermiddleClient { |
||||||
|
|
||||||
|
private final IBasicdataDrivermiddleService basicdataDrivermiddleService; |
||||||
|
|
||||||
|
@Override |
||||||
|
@GetMapping(TOP) |
||||||
|
public BladePage<BasicdataDrivermiddleEntity> top(Integer current, Integer size) { |
||||||
|
Query query = new Query(); |
||||||
|
query.setCurrent(current); |
||||||
|
query.setSize(size); |
||||||
|
IPage<BasicdataDrivermiddleEntity> page = basicdataDrivermiddleService.page(Condition.getPage(query)); |
||||||
|
return BladePage.of(page); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,54 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.mapper; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataDrivermiddleVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataDrivermiddleExcel; |
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
public interface BasicdataDrivermiddleMapper extends BaseMapper<BasicdataDrivermiddleEntity> { |
||||||
|
|
||||||
|
/** |
||||||
|
* 自定义分页 |
||||||
|
* |
||||||
|
* @param page |
||||||
|
* @param basicdataDrivermiddle |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
List<BasicdataDrivermiddleVO> selectBasicdataDrivermiddlePage(IPage page, BasicdataDrivermiddleVO basicdataDrivermiddle); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 获取导出数据 |
||||||
|
* |
||||||
|
* @param queryWrapper |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
List<BasicdataDrivermiddleExcel> exportBasicdataDrivermiddle(@Param("ew") Wrapper<BasicdataDrivermiddleEntity> queryWrapper); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,36 @@ |
|||||||
|
<?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="com.logpm.basicdata.mapper.BasicdataDrivermiddleMapper"> |
||||||
|
|
||||||
|
<!-- 通用查询映射结果 --> |
||||||
|
<resultMap id="basicdataDrivermiddleResultMap" type="com.logpm.basicdata.entity.BasicdataDrivermiddleEntity"> |
||||||
|
<result column="id" property="id"/> |
||||||
|
<result column="tenant_id" property="tenantId"/> |
||||||
|
<result column="create_user" property="createUser"/> |
||||||
|
<result column="create_time" property="createTime"/> |
||||||
|
<result column="update_user" property="updateUser"/> |
||||||
|
<result column="update_time" property="updateTime"/> |
||||||
|
<result column="status" property="status"/> |
||||||
|
<result column="is_deleted" property="isDeleted"/> |
||||||
|
<result column="create_dept" property="createDept"/> |
||||||
|
<result column="reserve1" property="reserve1"/> |
||||||
|
<result column="reserve2" property="reserve2"/> |
||||||
|
<result column="reserve3" property="reserve3"/> |
||||||
|
<result column="reserve4" property="reserve4"/> |
||||||
|
<result column="reserve5" property="reserve5"/> |
||||||
|
<result column="driver_id" property="driverId"/> |
||||||
|
<result column="brand_id" property="brandId"/> |
||||||
|
<result column="state" property="state"/> |
||||||
|
</resultMap> |
||||||
|
|
||||||
|
|
||||||
|
<select id="selectBasicdataDrivermiddlePage" resultMap="basicdataDrivermiddleResultMap"> |
||||||
|
select * from logpm_basicdata_drivermiddle where is_deleted = 0 |
||||||
|
</select> |
||||||
|
|
||||||
|
|
||||||
|
<select id="exportBasicdataDrivermiddle" resultType="com.logpm.basicdata.excel.BasicdataDrivermiddleExcel"> |
||||||
|
SELECT * FROM logpm_basicdata_drivermiddle ${ew.customSqlSegment} |
||||||
|
</select> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,52 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataDrivermiddleVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataDrivermiddleExcel; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 服务类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
public interface IBasicdataDrivermiddleService extends BaseService<BasicdataDrivermiddleEntity> { |
||||||
|
/** |
||||||
|
* 自定义分页 |
||||||
|
* |
||||||
|
* @param page |
||||||
|
* @param basicdataDrivermiddle |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
IPage<BasicdataDrivermiddleVO> selectBasicdataDrivermiddlePage(IPage<BasicdataDrivermiddleVO> page, BasicdataDrivermiddleVO basicdataDrivermiddle); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 导出数据 |
||||||
|
* |
||||||
|
* @param queryWrapper |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
List<BasicdataDrivermiddleExcel> exportBasicdataDrivermiddle(Wrapper<BasicdataDrivermiddleEntity> queryWrapper); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,54 @@ |
|||||||
|
/* |
||||||
|
* 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.basicdata.service.impl; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataDrivermiddleEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataDrivermiddleVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataDrivermiddleExcel; |
||||||
|
import com.logpm.basicdata.mapper.BasicdataDrivermiddleMapper; |
||||||
|
import com.logpm.basicdata.service.IBasicdataDrivermiddleService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机中间表 服务实现类 |
||||||
|
* |
||||||
|
* @author lmy |
||||||
|
* @since 2023-06-26 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class BasicdataDrivermiddleServiceImpl extends BaseServiceImpl<BasicdataDrivermiddleMapper, BasicdataDrivermiddleEntity> implements IBasicdataDrivermiddleService { |
||||||
|
|
||||||
|
@Override |
||||||
|
public IPage<BasicdataDrivermiddleVO> selectBasicdataDrivermiddlePage(IPage<BasicdataDrivermiddleVO> page, BasicdataDrivermiddleVO basicdataDrivermiddle) { |
||||||
|
return page.setRecords(baseMapper.selectBasicdataDrivermiddlePage(page, basicdataDrivermiddle)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public List<BasicdataDrivermiddleExcel> exportBasicdataDrivermiddle(Wrapper<BasicdataDrivermiddleEntity> queryWrapper) { |
||||||
|
List<BasicdataDrivermiddleExcel> basicdataDrivermiddleList = baseMapper.exportBasicdataDrivermiddle(queryWrapper); |
||||||
|
//basicdataDrivermiddleList.forEach(basicdataDrivermiddle -> {
|
||||||
|
// basicdataDrivermiddle.setTypeName(DictCache.getValue(DictEnum.YES_NO, BasicdataDrivermiddle.getType()));
|
||||||
|
//});
|
||||||
|
return basicdataDrivermiddleList; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,26 @@ |
|||||||
|
package com.logpm.basicdata.wrapper; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataBrandEntity; |
||||||
|
import com.logpm.basicdata.entity.BasicdataDriverArteryEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataBrandVO; |
||||||
|
import com.logpm.basicdata.vo.BasicdataDriverArteryVO; |
||||||
|
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||||
|
import org.springblade.core.tool.utils.BeanUtil; |
||||||
|
import org.springframework.stereotype.Component; |
||||||
|
|
||||||
|
import java.util.Objects; |
||||||
|
|
||||||
|
@Component |
||||||
|
public class BasicdataDriverArteryWrapper extends BaseEntityWrapper<BasicdataDriverArteryEntity, BasicdataDriverArteryVO> { |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public BasicdataDriverArteryVO entityVO(BasicdataDriverArteryEntity entity) { |
||||||
|
BasicdataDriverArteryVO stationlinenumVO = Objects.requireNonNull(BeanUtil.copy(entity, BasicdataDriverArteryVO.class)); |
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
return stationlinenumVO; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue