From 548f9cf603460e1d23124b92e625f32f36730a6e Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Sat, 04 Mar 2023 17:11:41 +0800
Subject: [PATCH] 添加设备管理、车辆管理、火灾管理、机构添加字段
---
src/main/java/org/springblade/modules/fireSupplement/service/IFireSupplementService.java | 42 +
src/main/java/org/springblade/modules/vehicle/entity/VehicleEntity.java | 55 +
src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.java | 44 +
src/main/java/org/springblade/modules/fireSupplement/entity/FireSupplementEntity.java | 119 +++
src/main/java/org/springblade/modules/device/mapper/DeviceMapper.java | 43 +
src/main/java/org/springblade/modules/fire/vo/FireVO.java | 35 +
src/main/java/org/springblade/modules/device/mapper/DeviceMapper.xml | 28
src/main/java/org/springblade/modules/fire/mapper/FireMapper.java | 44 +
src/main/java/org/springblade/modules/fireSupplement/dto/FireSupplementDTO.java | 34 +
src/main/java/org/springblade/modules/fire/entity/FireEntity.java | 93 +++
src/main/java/org/springblade/modules/fireSupplement/controller/FireSupplementController.java | 125 ++++
src/main/java/org/springblade/modules/device/vo/DeviceVO.java | 35 +
src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.xml | 38 +
src/main/java/org/springblade/modules/system/entity/Dept.java | 36 +
src/main/java/org/springblade/modules/fire/dto/FireDTO.java | 34 +
src/main/java/org/springblade/modules/fire/mapper/FireMapper.xml | 35 +
src/main/java/org/springblade/modules/vehicle/controller/VehicleController.java | 125 ++++
src/main/java/org/springblade/modules/vehicle/dto/VehicleDTO.java | 34 +
src/main/java/org/springblade/modules/vehicle/service/impl/VehicleServiceImpl.java | 42 +
src/main/java/org/springblade/modules/fire/controller/FireController.java | 125 ++++
src/main/java/org/springblade/modules/fire/service/impl/FireServiceImpl.java | 42 +
src/main/java/org/springblade/modules/fireSupplement/vo/FireSupplementVO.java | 35 +
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml | 7
src/main/java/org/springblade/modules/device/service/IDeviceService.java | 42 +
src/main/java/org/springblade/modules/device/controller/DeviceController.java | 125 ++++
src/main/java/org/springblade/modules/vehicle/service/IVehicleService.java | 42 +
src/main/java/org/springblade/modules/device/dto/DeviceDTO.java | 34 +
src/main/java/org/springblade/modules/device/service/impl/DeviceServiceImpl.java | 42 +
src/main/java/org/springblade/modules/fire/service/IFireService.java | 42 +
src/main/java/org/springblade/modules/device/entity/DeviceEntity.java | 60 ++
src/main/java/org/springblade/modules/fireSupplement/service/impl/FireSupplementServiceImpl.java | 42 +
src/main/java/org/springblade/modules/vehicle/vo/VehicleVO.java | 35 +
src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.xml | 31 +
src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.java | 43 +
34 files changed, 1,786 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/springblade/modules/device/controller/DeviceController.java b/src/main/java/org/springblade/modules/device/controller/DeviceController.java
new file mode 100644
index 0000000..6557986
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/controller/DeviceController.java
@@ -0,0 +1,125 @@
+/*
+ * 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 org.springblade.modules.device.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.metadata.IPage;
+import org.springblade.modules.device.entity.DeviceEntity;
+import org.springblade.modules.device.vo.DeviceVO;
+import org.springblade.modules.device.service.IDeviceService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 设备表 控制器
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("blade-device/device")
+@Api(value = "设备表", tags = "设备表接口")
+public class DeviceController extends BladeController {
+
+ private final IDeviceService deviceService;
+
+ /**
+ * 设备表 详情
+ */
+ @GetMapping("/detail")
+ @ApiOperationSupport(order = 1)
+ @ApiOperation(value = "详情", notes = "传入device")
+ public R<DeviceEntity> detail(DeviceEntity device) {
+ DeviceEntity detail = deviceService.getOne(Condition.getQueryWrapper(device));
+ return R.data(detail);
+ }
+ /**
+ * 设备表 分页
+ */
+ @GetMapping("/list")
+ @ApiOperationSupport(order = 2)
+ @ApiOperation(value = "分页", notes = "传入device")
+ public R<IPage<DeviceEntity>> list(DeviceEntity device, Query query) {
+ IPage<DeviceEntity> pages = deviceService.page(Condition.getPage(query), Condition.getQueryWrapper(device));
+ return R.data(pages);
+ }
+
+ /**
+ * 设备表 自定义分页
+ */
+ @GetMapping("/page")
+ @ApiOperationSupport(order = 3)
+ @ApiOperation(value = "分页", notes = "传入device")
+ public R<IPage<DeviceVO>> page(DeviceVO device, Query query) {
+ IPage<DeviceVO> pages = deviceService.selectDevicePage(Condition.getPage(query), device);
+ return R.data(pages);
+ }
+
+ /**
+ * 设备表 新增
+ */
+ @PostMapping("/save")
+ @ApiOperationSupport(order = 4)
+ @ApiOperation(value = "新增", notes = "传入device")
+ public R save(@Valid @RequestBody DeviceEntity device) {
+ return R.status(deviceService.save(device));
+ }
+
+ /**
+ * 设备表 修改
+ */
+ @PostMapping("/update")
+ @ApiOperationSupport(order = 5)
+ @ApiOperation(value = "修改", notes = "传入device")
+ public R update(@Valid @RequestBody DeviceEntity device) {
+ return R.status(deviceService.updateById(device));
+ }
+
+ /**
+ * 设备表 新增或修改
+ */
+ @PostMapping("/submit")
+ @ApiOperationSupport(order = 6)
+ @ApiOperation(value = "新增或修改", notes = "传入device")
+ public R submit(@Valid @RequestBody DeviceEntity device) {
+ return R.status(deviceService.saveOrUpdate(device));
+ }
+
+ /**
+ * 设备表 删除
+ */
+ @PostMapping("/remove")
+ @ApiOperationSupport(order = 7)
+ @ApiOperation(value = "逻辑删除", notes = "传入ids")
+ public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+ return R.status(deviceService.deleteLogic(Func.toLongList(ids)));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/device/dto/DeviceDTO.java b/src/main/java/org/springblade/modules/device/dto/DeviceDTO.java
new file mode 100644
index 0000000..f0d6608
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/dto/DeviceDTO.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 org.springblade.modules.device.dto;
+
+import org.springblade.modules.device.entity.DeviceEntity;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 设备表 数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class DeviceDTO extends DeviceEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/device/entity/DeviceEntity.java b/src/main/java/org/springblade/modules/device/entity/DeviceEntity.java
new file mode 100644
index 0000000..73281b2
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/entity/DeviceEntity.java
@@ -0,0 +1,60 @@
+/*
+ * 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 org.springblade.modules.device.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 BladeX
+ * @since 2023-03-03
+ */
+@Data
+@TableName("sys_device")
+@ApiModel(value = "Device对象", description = "设备表")
+@EqualsAndHashCode(callSuper = true)
+public class DeviceEntity extends TenantEntity {
+
+ /**
+ * 设备名称
+ */
+ @ApiModelProperty(value = "设备名称")
+ private String name;
+ /**
+ * 设备类型
+ */
+ @ApiModelProperty(value = "设备类型")
+ private String type;
+ /**
+ * 是否支持北斗定位(1、支持;2不支持)
+ */
+ @ApiModelProperty(value = "是否支持北斗定位(1、支持;2不支持)")
+ private String beidouPositioning;
+ /**
+ * 所在单位id
+ */
+ @ApiModelProperty(value = "所在单位id")
+ private String deptId;
+
+}
diff --git a/src/main/java/org/springblade/modules/device/mapper/DeviceMapper.java b/src/main/java/org/springblade/modules/device/mapper/DeviceMapper.java
new file mode 100644
index 0000000..70e5b88
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/mapper/DeviceMapper.java
@@ -0,0 +1,43 @@
+/*
+ * 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 org.springblade.modules.device.mapper;
+
+import org.springblade.modules.device.entity.DeviceEntity;
+import org.springblade.modules.device.vo.DeviceVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 设备表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+public interface DeviceMapper extends BaseMapper<DeviceEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param device
+ * @return
+ */
+ List<DeviceVO> selectDevicePage(IPage page, DeviceVO device);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/device/mapper/DeviceMapper.xml b/src/main/java/org/springblade/modules/device/mapper/DeviceMapper.xml
new file mode 100644
index 0000000..e502e76
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/mapper/DeviceMapper.xml
@@ -0,0 +1,28 @@
+<?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="org.springblade.modules.device.mapper.DeviceMapper">
+
+ <!-- 通用查询映射结果 -->
+ <resultMap id="deviceResultMap" type="org.springblade.modules.device.entity.DeviceEntity">
+ <result column="id" property="id"/>
+ <result column="name" property="name"/>
+ <result column="type" property="type"/>
+ <result column="beidou_positioning" property="beidouPositioning"/>
+ <result column="dept_id" property="deptId"/>
+ <result column="create_user" property="createUser"/>
+ <result column="create_dept" property="createDept"/>
+ <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="tenant_id" property="tenantId"/>
+ </resultMap>
+
+
+ <select id="selectDevicePage" resultMap="deviceResultMap">
+ select * from sys_device where is_deleted = 0
+ </select>
+
+
+</mapper>
diff --git a/src/main/java/org/springblade/modules/device/service/IDeviceService.java b/src/main/java/org/springblade/modules/device/service/IDeviceService.java
new file mode 100644
index 0000000..77a8701
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/service/IDeviceService.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.device.service;
+
+import org.springblade.modules.device.entity.DeviceEntity;
+import org.springblade.modules.device.vo.DeviceVO;
+import org.springblade.core.mp.base.BaseService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 设备表 服务类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+public interface IDeviceService extends BaseService<DeviceEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param device
+ * @return
+ */
+ IPage<DeviceVO> selectDevicePage(IPage<DeviceVO> page, DeviceVO device);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/device/service/impl/DeviceServiceImpl.java b/src/main/java/org/springblade/modules/device/service/impl/DeviceServiceImpl.java
new file mode 100644
index 0000000..4bfa04b
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/service/impl/DeviceServiceImpl.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.device.service.impl;
+
+import org.springblade.modules.device.entity.DeviceEntity;
+import org.springblade.modules.device.vo.DeviceVO;
+import org.springblade.modules.device.mapper.DeviceMapper;
+import org.springblade.modules.device.service.IDeviceService;
+import org.springblade.core.mp.base.BaseServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 设备表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Service
+public class DeviceServiceImpl extends BaseServiceImpl<DeviceMapper, DeviceEntity> implements IDeviceService {
+
+ @Override
+ public IPage<DeviceVO> selectDevicePage(IPage<DeviceVO> page, DeviceVO device) {
+ return page.setRecords(baseMapper.selectDevicePage(page, device));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/device/vo/DeviceVO.java b/src/main/java/org/springblade/modules/device/vo/DeviceVO.java
new file mode 100644
index 0000000..ec2e869
--- /dev/null
+++ b/src/main/java/org/springblade/modules/device/vo/DeviceVO.java
@@ -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 org.springblade.modules.device.vo;
+
+import org.springblade.modules.device.entity.DeviceEntity;
+import org.springblade.core.tool.node.INode;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 设备表 视图实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class DeviceVO extends DeviceEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/controller/FireController.java b/src/main/java/org/springblade/modules/fire/controller/FireController.java
new file mode 100644
index 0000000..d5d51a3
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/controller/FireController.java
@@ -0,0 +1,125 @@
+/*
+ * 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 org.springblade.modules.fire.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.metadata.IPage;
+import org.springblade.modules.fire.entity.FireEntity;
+import org.springblade.modules.fire.vo.FireVO;
+import org.springblade.modules.fire.service.IFireService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 火灾记录表 控制器
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("blade-fire/fire")
+@Api(value = "火灾记录表", tags = "火灾记录表接口")
+public class FireController extends BladeController {
+
+ private final IFireService fireService;
+
+ /**
+ * 火灾记录表 详情
+ */
+ @GetMapping("/detail")
+ @ApiOperationSupport(order = 1)
+ @ApiOperation(value = "详情", notes = "传入fire")
+ public R<FireEntity> detail(FireEntity fire) {
+ FireEntity detail = fireService.getOne(Condition.getQueryWrapper(fire));
+ return R.data(detail);
+ }
+ /**
+ * 火灾记录表 分页
+ */
+ @GetMapping("/list")
+ @ApiOperationSupport(order = 2)
+ @ApiOperation(value = "分页", notes = "传入fire")
+ public R<IPage<FireEntity>> list(FireEntity fire, Query query) {
+ IPage<FireEntity> pages = fireService.page(Condition.getPage(query), Condition.getQueryWrapper(fire));
+ return R.data(pages);
+ }
+
+ /**
+ * 火灾记录表 自定义分页
+ */
+ @GetMapping("/page")
+ @ApiOperationSupport(order = 3)
+ @ApiOperation(value = "分页", notes = "传入fire")
+ public R<IPage<FireVO>> page(FireVO fire, Query query) {
+ IPage<FireVO> pages = fireService.selectFirePage(Condition.getPage(query), fire);
+ return R.data(pages);
+ }
+
+ /**
+ * 火灾记录表 新增
+ */
+ @PostMapping("/save")
+ @ApiOperationSupport(order = 4)
+ @ApiOperation(value = "新增", notes = "传入fire")
+ public R save(@Valid @RequestBody FireEntity fire) {
+ return R.status(fireService.save(fire));
+ }
+
+ /**
+ * 火灾记录表 修改
+ */
+ @PostMapping("/update")
+ @ApiOperationSupport(order = 5)
+ @ApiOperation(value = "修改", notes = "传入fire")
+ public R update(@Valid @RequestBody FireEntity fire) {
+ return R.status(fireService.updateById(fire));
+ }
+
+ /**
+ * 火灾记录表 新增或修改
+ */
+ @PostMapping("/submit")
+ @ApiOperationSupport(order = 6)
+ @ApiOperation(value = "新增或修改", notes = "传入fire")
+ public R submit(@Valid @RequestBody FireEntity fire) {
+ return R.status(fireService.saveOrUpdate(fire));
+ }
+
+ /**
+ * 火灾记录表 删除
+ */
+ @PostMapping("/remove")
+ @ApiOperationSupport(order = 7)
+ @ApiOperation(value = "逻辑删除", notes = "传入ids")
+ public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+ return R.status(fireService.deleteLogic(Func.toLongList(ids)));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/dto/FireDTO.java b/src/main/java/org/springblade/modules/fire/dto/FireDTO.java
new file mode 100644
index 0000000..2244eba
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/dto/FireDTO.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 org.springblade.modules.fire.dto;
+
+import org.springblade.modules.fire.entity.FireEntity;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 火灾记录表 数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class FireDTO extends FireEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/entity/FireEntity.java b/src/main/java/org/springblade/modules/fire/entity/FireEntity.java
new file mode 100644
index 0000000..5fb206a
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/entity/FireEntity.java
@@ -0,0 +1,93 @@
+/*
+ * 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 org.springblade.modules.fire.entity;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
+import com.fasterxml.jackson.annotation.JsonFormat;
+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;
+import org.springframework.format.annotation.DateTimeFormat;
+
+/**
+ * 火灾记录表 实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@TableName(value = "sys_fire",autoResultMap = true)
+@ApiModel(value = "Fire对象", description = "火灾记录表")
+@EqualsAndHashCode(callSuper = true)
+public class FireEntity extends TenantEntity {
+
+ /**
+ * 火灾编号
+ */
+ @ApiModelProperty(value = "火灾编号")
+ private String no;
+ /**
+ * 火灾具体位置
+ */
+ @ApiModelProperty(value = "火灾具体位置")
+ private String address;
+ /**
+ * 行政区域
+ */
+ @ApiModelProperty(value = "行政区域")
+ @TableField(value = "location",typeHandler = FastjsonTypeHandler.class)
+ private Object location;
+ /**
+ * 发现方式
+ */
+ @ApiModelProperty(value = "发现方式")
+ private String findWay;
+ /**
+ * 火灾等级
+ */
+ @ApiModelProperty(value = "火灾等级")
+ private String level;
+ /**
+ * 报警人
+ */
+ @ApiModelProperty(value = "报警人")
+ private String caller;
+ /**
+ * 报警时间
+ */
+ @ApiModelProperty(value = "报警时间")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date alarmTime;
+ /**
+ * 火灾描述
+ */
+ @ApiModelProperty(value = "火灾描述")
+ private String description;
+ /**
+ * 现场图片
+ */
+ @ApiModelProperty(value = "现场图片")
+ @TableField(value = "images",typeHandler = FastjsonTypeHandler.class)
+ private Object images;
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/mapper/FireMapper.java b/src/main/java/org/springblade/modules/fire/mapper/FireMapper.java
new file mode 100644
index 0000000..ef6b6b8
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/mapper/FireMapper.java
@@ -0,0 +1,44 @@
+/*
+ * 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 org.springblade.modules.fire.mapper;
+
+import org.apache.ibatis.annotations.Param;
+import org.springblade.modules.fire.entity.FireEntity;
+import org.springblade.modules.fire.vo.FireVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 火灾记录表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+public interface FireMapper extends BaseMapper<FireEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param fire
+ * @return
+ */
+ List<FireVO> selectFirePage(IPage page, @Param("fire") FireVO fire);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/mapper/FireMapper.xml b/src/main/java/org/springblade/modules/fire/mapper/FireMapper.xml
new file mode 100644
index 0000000..c89abc8
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/mapper/FireMapper.xml
@@ -0,0 +1,35 @@
+<?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="org.springblade.modules.fire.mapper.FireMapper">
+
+ <!-- 通用查询映射结果 -->
+ <resultMap id="fireResultMap" type="org.springblade.modules.fire.entity.FireEntity">
+ <result column="id" property="id"/>
+ <result column="no" property="no"/>
+ <result column="location" property="location" typeHandler="com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler"/>
+ <result column="level" property="level"/>
+ <result column="status" property="status"/>
+ <result column="caller" property="caller"/>
+ <result column="alarm_time" property="alarmTime"/>
+ <result column="description" property="description"/>
+ <result column="images" property="images" typeHandler="com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler"/>
+ <result column="create_user" property="createUser"/>
+ <result column="create_dept" property="createDept"/>
+ <result column="create_time" property="createTime"/>
+ <result column="update_user" property="updateUser"/>
+ <result column="update_time" property="updateTime"/>
+ <result column="is_deleted" property="isDeleted"/>
+ <result column="tenant_id" property="tenantId"/>
+ </resultMap>
+
+
+ <select id="selectFirePage" resultMap="fireResultMap">
+ select * from sys_fire where is_deleted = 0
+ <if test="fire.location !=null and fire.location !='' ">
+ AND location = #{fire.location,typeHandler=com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler}
+ </if>
+
+ </select>
+
+
+</mapper>
diff --git a/src/main/java/org/springblade/modules/fire/service/IFireService.java b/src/main/java/org/springblade/modules/fire/service/IFireService.java
new file mode 100644
index 0000000..2193f11
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/service/IFireService.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.fire.service;
+
+import org.springblade.modules.fire.entity.FireEntity;
+import org.springblade.modules.fire.vo.FireVO;
+import org.springblade.core.mp.base.BaseService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 火灾记录表 服务类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+public interface IFireService extends BaseService<FireEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param fire
+ * @return
+ */
+ IPage<FireVO> selectFirePage(IPage<FireVO> page, FireVO fire);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/service/impl/FireServiceImpl.java b/src/main/java/org/springblade/modules/fire/service/impl/FireServiceImpl.java
new file mode 100644
index 0000000..c2738fe
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/service/impl/FireServiceImpl.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.fire.service.impl;
+
+import org.springblade.modules.fire.entity.FireEntity;
+import org.springblade.modules.fire.vo.FireVO;
+import org.springblade.modules.fire.mapper.FireMapper;
+import org.springblade.modules.fire.service.IFireService;
+import org.springblade.core.mp.base.BaseServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 火灾记录表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Service
+public class FireServiceImpl extends BaseServiceImpl<FireMapper, FireEntity> implements IFireService {
+
+ @Override
+ public IPage<FireVO> selectFirePage(IPage<FireVO> page, FireVO fire) {
+ return page.setRecords(baseMapper.selectFirePage(page, fire));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fire/vo/FireVO.java b/src/main/java/org/springblade/modules/fire/vo/FireVO.java
new file mode 100644
index 0000000..d0a0c7c
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fire/vo/FireVO.java
@@ -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 org.springblade.modules.fire.vo;
+
+import org.springblade.modules.fire.entity.FireEntity;
+import org.springblade.core.tool.node.INode;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 火灾记录表 视图实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class FireVO extends FireEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/controller/FireSupplementController.java b/src/main/java/org/springblade/modules/fireSupplement/controller/FireSupplementController.java
new file mode 100644
index 0000000..2657e64
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/controller/FireSupplementController.java
@@ -0,0 +1,125 @@
+/*
+ * 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 org.springblade.modules.fireSupplement.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.metadata.IPage;
+import org.springblade.modules.fireSupplement.entity.FireSupplementEntity;
+import org.springblade.modules.fireSupplement.vo.FireSupplementVO;
+import org.springblade.modules.fireSupplement.service.IFireSupplementService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 火灾补充表 控制器
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("blade-fireSupplement/fireSupplement")
+@Api(value = "火灾补充表", tags = "火灾补充表接口")
+public class FireSupplementController extends BladeController {
+
+ private final IFireSupplementService fireSupplementService;
+
+ /**
+ * 火灾补充表 详情
+ */
+ @GetMapping("/detail")
+ @ApiOperationSupport(order = 1)
+ @ApiOperation(value = "详情", notes = "传入fireSupplement")
+ public R<FireSupplementEntity> detail(FireSupplementEntity fireSupplement) {
+ FireSupplementEntity detail = fireSupplementService.getOne(Condition.getQueryWrapper(fireSupplement));
+ return R.data(detail);
+ }
+ /**
+ * 火灾补充表 分页
+ */
+ @GetMapping("/list")
+ @ApiOperationSupport(order = 2)
+ @ApiOperation(value = "分页", notes = "传入fireSupplement")
+ public R<IPage<FireSupplementEntity>> list(FireSupplementEntity fireSupplement, Query query) {
+ IPage<FireSupplementEntity> pages = fireSupplementService.page(Condition.getPage(query), Condition.getQueryWrapper(fireSupplement));
+ return R.data(pages);
+ }
+
+ /**
+ * 火灾补充表 自定义分页
+ */
+ @GetMapping("/page")
+ @ApiOperationSupport(order = 3)
+ @ApiOperation(value = "分页", notes = "传入fireSupplement")
+ public R<IPage<FireSupplementVO>> page(FireSupplementVO fireSupplement, Query query) {
+ IPage<FireSupplementVO> pages = fireSupplementService.selectFireSupplementPage(Condition.getPage(query), fireSupplement);
+ return R.data(pages);
+ }
+
+ /**
+ * 火灾补充表 新增
+ */
+ @PostMapping("/save")
+ @ApiOperationSupport(order = 4)
+ @ApiOperation(value = "新增", notes = "传入fireSupplement")
+ public R save(@Valid @RequestBody FireSupplementEntity fireSupplement) {
+ return R.status(fireSupplementService.save(fireSupplement));
+ }
+
+ /**
+ * 火灾补充表 修改
+ */
+ @PostMapping("/update")
+ @ApiOperationSupport(order = 5)
+ @ApiOperation(value = "修改", notes = "传入fireSupplement")
+ public R update(@Valid @RequestBody FireSupplementEntity fireSupplement) {
+ return R.status(fireSupplementService.updateById(fireSupplement));
+ }
+
+ /**
+ * 火灾补充表 新增或修改
+ */
+ @PostMapping("/submit")
+ @ApiOperationSupport(order = 6)
+ @ApiOperation(value = "新增或修改", notes = "传入fireSupplement")
+ public R submit(@Valid @RequestBody FireSupplementEntity fireSupplement) {
+ return R.status(fireSupplementService.saveOrUpdate(fireSupplement));
+ }
+
+ /**
+ * 火灾补充表 删除
+ */
+ @PostMapping("/remove")
+ @ApiOperationSupport(order = 7)
+ @ApiOperation(value = "逻辑删除", notes = "传入ids")
+ public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+ return R.status(fireSupplementService.deleteLogic(Func.toLongList(ids)));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/dto/FireSupplementDTO.java b/src/main/java/org/springblade/modules/fireSupplement/dto/FireSupplementDTO.java
new file mode 100644
index 0000000..d1cfd53
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/dto/FireSupplementDTO.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 org.springblade.modules.fireSupplement.dto;
+
+import org.springblade.modules.fireSupplement.entity.FireSupplementEntity;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 火灾补充表 数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class FireSupplementDTO extends FireSupplementEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/entity/FireSupplementEntity.java b/src/main/java/org/springblade/modules/fireSupplement/entity/FireSupplementEntity.java
new file mode 100644
index 0000000..b9b87bc
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/entity/FireSupplementEntity.java
@@ -0,0 +1,119 @@
+/*
+ * 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 org.springblade.modules.fireSupplement.entity;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
+import com.fasterxml.jackson.annotation.JsonFormat;
+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;
+import org.springframework.format.annotation.DateTimeFormat;
+
+/**
+ * 火灾补充表 实体类
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+@Data
+@TableName(value = "sys_fire_supplement",autoResultMap = true)
+@ApiModel(value = "FireSupplement对象", description = "火灾补充表")
+@EqualsAndHashCode(callSuper = true)
+public class FireSupplementEntity extends TenantEntity {
+
+ /**
+ * 火灾表主键
+ */
+ @ApiModelProperty(value = "火灾表主键")
+ private String fireId;
+ /**
+ * 火灾原因
+ */
+ @ApiModelProperty(value = "火灾原因")
+ private String fireReason;
+ /**
+ * 起火树种
+ */
+ @ApiModelProperty(value = "起火树种")
+ private String treeSpecies;
+ /**
+ * 灭火时间
+ */
+ @ApiModelProperty(value = "灭火时间")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date extinguishingTime;
+ /**
+ * 肇事者
+ */
+ @ApiModelProperty(value = "肇事者")
+ private String perpetrator;
+ /**
+ * 处理人数
+ */
+ @ApiModelProperty(value = "处理人数")
+ private Integer sumPerson;
+ /**
+ * 刑事处罚人数
+ */
+ @ApiModelProperty(value = "刑事处罚人数")
+ private Integer punishPerson;
+ /**
+ * 处理情况
+ */
+ @ApiModelProperty(value = "处理情况")
+ private String situation;
+ /**
+ * 轻伤人数
+ */
+ @ApiModelProperty(value = "轻伤人数")
+ private Integer minorInjuryPerson;
+ /**
+ * 重伤人数
+ */
+ @ApiModelProperty(value = "重伤人数")
+ private Integer seriousInjuryPerson;
+ /**
+ * 死亡人数
+ */
+ @ApiModelProperty(value = "死亡人数")
+ private Integer deathPerson;
+ /**
+ * 经济损失
+ */
+ @ApiModelProperty(value = "经济损失")
+ @TableField(value = "economic_loss",typeHandler = FastjsonTypeHandler.class)
+ private Object economicLoss;
+ /**
+ * 受灾面积
+ */
+ @ApiModelProperty(value = "受灾面积")
+ @TableField(value = "damage_area",typeHandler = FastjsonTypeHandler.class)
+ private Object damageArea;
+ /**
+ * 出动警力
+ */
+ @ApiModelProperty(value = "出动警力")
+ @TableField(value = "police_resources",typeHandler = FastjsonTypeHandler.class)
+ private Object policeResources;
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.java b/src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.java
new file mode 100644
index 0000000..fc4fac8
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.java
@@ -0,0 +1,43 @@
+/*
+ * 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 org.springblade.modules.fireSupplement.mapper;
+
+import org.springblade.modules.fireSupplement.entity.FireSupplementEntity;
+import org.springblade.modules.fireSupplement.vo.FireSupplementVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 火灾补充表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+public interface FireSupplementMapper extends BaseMapper<FireSupplementEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param fireSupplement
+ * @return
+ */
+ List<FireSupplementVO> selectFireSupplementPage(IPage page, FireSupplementVO fireSupplement);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.xml b/src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.xml
new file mode 100644
index 0000000..094b169
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/mapper/FireSupplementMapper.xml
@@ -0,0 +1,38 @@
+<?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="org.springblade.modules.fireSupplement.mapper.FireSupplementMapper">
+
+ <!-- 通用查询映射结果 -->
+ <resultMap id="fireSupplementResultMap" type="org.springblade.modules.fireSupplement.entity.FireSupplementEntity">
+ <result column="id" property="id"/>
+ <result column="fire_id" property="fireId"/>
+ <result column="fire_reason" property="fireReason"/>
+ <result column="tree_species" property="treeSpecies"/>
+ <result column="extinguishing_time" property="extinguishingTime"/>
+ <result column="perpetrator" property="perpetrator"/>
+ <result column="sum_person" property="sumPerson"/>
+ <result column="punish_person" property="punishPerson"/>
+ <result column="situation" property="situation"/>
+ <result column="minor_injury_person" property="minorInjuryPerson"/>
+ <result column="serious_injury_person" property="seriousInjuryPerson"/>
+ <result column="death_person" property="deathPerson"/>
+ <result column="economic_loss" property="economicLoss"/>
+ <result column="damage_area" property="damageArea"/>
+ <result column="police_resources" property="policeResources"/>
+ <result column="create_user" property="createUser"/>
+ <result column="create_dept" property="createDept"/>
+ <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="tenant_id" property="tenantId"/>
+ </resultMap>
+
+
+ <select id="selectFireSupplementPage" resultMap="fireSupplementResultMap">
+ select * from sys_fire_supplement where is_deleted = 0
+ </select>
+
+
+</mapper>
diff --git a/src/main/java/org/springblade/modules/fireSupplement/service/IFireSupplementService.java b/src/main/java/org/springblade/modules/fireSupplement/service/IFireSupplementService.java
new file mode 100644
index 0000000..b81820d
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/service/IFireSupplementService.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.fireSupplement.service;
+
+import org.springblade.modules.fireSupplement.entity.FireSupplementEntity;
+import org.springblade.modules.fireSupplement.vo.FireSupplementVO;
+import org.springblade.core.mp.base.BaseService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 火灾补充表 服务类
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+public interface IFireSupplementService extends BaseService<FireSupplementEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param fireSupplement
+ * @return
+ */
+ IPage<FireSupplementVO> selectFireSupplementPage(IPage<FireSupplementVO> page, FireSupplementVO fireSupplement);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/service/impl/FireSupplementServiceImpl.java b/src/main/java/org/springblade/modules/fireSupplement/service/impl/FireSupplementServiceImpl.java
new file mode 100644
index 0000000..b56cf21
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/service/impl/FireSupplementServiceImpl.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.fireSupplement.service.impl;
+
+import org.springblade.modules.fireSupplement.entity.FireSupplementEntity;
+import org.springblade.modules.fireSupplement.vo.FireSupplementVO;
+import org.springblade.modules.fireSupplement.mapper.FireSupplementMapper;
+import org.springblade.modules.fireSupplement.service.IFireSupplementService;
+import org.springblade.core.mp.base.BaseServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 火灾补充表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+@Service
+public class FireSupplementServiceImpl extends BaseServiceImpl<FireSupplementMapper, FireSupplementEntity> implements IFireSupplementService {
+
+ @Override
+ public IPage<FireSupplementVO> selectFireSupplementPage(IPage<FireSupplementVO> page, FireSupplementVO fireSupplement) {
+ return page.setRecords(baseMapper.selectFireSupplementPage(page, fireSupplement));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/fireSupplement/vo/FireSupplementVO.java b/src/main/java/org/springblade/modules/fireSupplement/vo/FireSupplementVO.java
new file mode 100644
index 0000000..407344b
--- /dev/null
+++ b/src/main/java/org/springblade/modules/fireSupplement/vo/FireSupplementVO.java
@@ -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 org.springblade.modules.fireSupplement.vo;
+
+import org.springblade.modules.fireSupplement.entity.FireSupplementEntity;
+import org.springblade.core.tool.node.INode;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 火灾补充表 视图实体类
+ *
+ * @author BladeX
+ * @since 2023-03-04
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class FireSupplementVO extends FireSupplementEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/system/entity/Dept.java b/src/main/java/org/springblade/modules/system/entity/Dept.java
index e061240..c3b0e53 100644
--- a/src/main/java/org/springblade/modules/system/entity/Dept.java
+++ b/src/main/java/org/springblade/modules/system/entity/Dept.java
@@ -74,6 +74,42 @@
private String deptName;
/**
+ * 省
+ */
+ @ApiModelProperty(value = "省")
+ private String province;
+
+ /**
+ * 市
+ */
+ @ApiModelProperty(value = "市")
+ private String city;
+
+ /**
+ * 县
+ */
+ @ApiModelProperty(value = "县")
+ private String county;
+
+ /**
+ * 所在位置
+ */
+ @ApiModelProperty(value = "所在位置")
+ private String location;
+
+ /**
+ * 经度
+ */
+ @ApiModelProperty(value = "经度")
+ private String lon;
+
+ /**
+ * 纬度
+ */
+ @ApiModelProperty(value = "纬度")
+ private String lat;
+
+ /**
* 祖级机构主键
*/
@ApiModelProperty(value = "祖级机构主键")
diff --git a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
index fd25827..e6cda16 100644
--- a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -36,10 +36,10 @@
and tenant_id = #{user.tenantId}
</if>
<if test="user.account!=null and user.account != ''">
- and account = #{user.account}
+ and account LIKE CONCAT('%', #{user.account},'%')
</if>
<if test="user.realName!=null and user.realName != ''">
- and real_name = #{user.realName}
+ and real_name LIKE CONCAT('%', #{user.realName},'%')
</if>
<if test="user.userType!=null and user.userType != ''">
and user_type = #{user.userType}
@@ -57,6 +57,9 @@
</foreach>
)
</if>
+ <if test="user.phone !=null and user.phone !='' ">
+ AND phone LIKE CONCAT('%',#{user.phone},'%')
+ </if>
ORDER BY id
</select>
diff --git a/src/main/java/org/springblade/modules/vehicle/controller/VehicleController.java b/src/main/java/org/springblade/modules/vehicle/controller/VehicleController.java
new file mode 100644
index 0000000..06d685a
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/controller/VehicleController.java
@@ -0,0 +1,125 @@
+/*
+ * 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 org.springblade.modules.vehicle.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.metadata.IPage;
+import org.springblade.modules.vehicle.entity.VehicleEntity;
+import org.springblade.modules.vehicle.vo.VehicleVO;
+import org.springblade.modules.vehicle.service.IVehicleService;
+import org.springblade.core.boot.ctrl.BladeController;
+
+/**
+ * 车辆表 控制器
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@RestController
+@AllArgsConstructor
+@RequestMapping("blade-vehicle/vehicle")
+@Api(value = "车辆表", tags = "车辆表接口")
+public class VehicleController extends BladeController {
+
+ private final IVehicleService vehicleService;
+
+ /**
+ * 车辆表 详情
+ */
+ @GetMapping("/detail")
+ @ApiOperationSupport(order = 1)
+ @ApiOperation(value = "详情", notes = "传入vehicle")
+ public R<VehicleEntity> detail(VehicleEntity vehicle) {
+ VehicleEntity detail = vehicleService.getOne(Condition.getQueryWrapper(vehicle));
+ return R.data(detail);
+ }
+ /**
+ * 车辆表 分页
+ */
+ @GetMapping("/list")
+ @ApiOperationSupport(order = 2)
+ @ApiOperation(value = "分页", notes = "传入vehicle")
+ public R<IPage<VehicleEntity>> list(VehicleEntity vehicle, Query query) {
+ IPage<VehicleEntity> pages = vehicleService.page(Condition.getPage(query), Condition.getQueryWrapper(vehicle));
+ return R.data(pages);
+ }
+
+ /**
+ * 车辆表 自定义分页
+ */
+ @GetMapping("/page")
+ @ApiOperationSupport(order = 3)
+ @ApiOperation(value = "分页", notes = "传入vehicle")
+ public R<IPage<VehicleVO>> page(VehicleVO vehicle, Query query) {
+ IPage<VehicleVO> pages = vehicleService.selectVehiclePage(Condition.getPage(query), vehicle);
+ return R.data(pages);
+ }
+
+ /**
+ * 车辆表 新增
+ */
+ @PostMapping("/save")
+ @ApiOperationSupport(order = 4)
+ @ApiOperation(value = "新增", notes = "传入vehicle")
+ public R save(@Valid @RequestBody VehicleEntity vehicle) {
+ return R.status(vehicleService.save(vehicle));
+ }
+
+ /**
+ * 车辆表 修改
+ */
+ @PostMapping("/update")
+ @ApiOperationSupport(order = 5)
+ @ApiOperation(value = "修改", notes = "传入vehicle")
+ public R update(@Valid @RequestBody VehicleEntity vehicle) {
+ return R.status(vehicleService.updateById(vehicle));
+ }
+
+ /**
+ * 车辆表 新增或修改
+ */
+ @PostMapping("/submit")
+ @ApiOperationSupport(order = 6)
+ @ApiOperation(value = "新增或修改", notes = "传入vehicle")
+ public R submit(@Valid @RequestBody VehicleEntity vehicle) {
+ return R.status(vehicleService.saveOrUpdate(vehicle));
+ }
+
+ /**
+ * 车辆表 删除
+ */
+ @PostMapping("/remove")
+ @ApiOperationSupport(order = 7)
+ @ApiOperation(value = "逻辑删除", notes = "传入ids")
+ public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
+ return R.status(vehicleService.deleteLogic(Func.toLongList(ids)));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/vehicle/dto/VehicleDTO.java b/src/main/java/org/springblade/modules/vehicle/dto/VehicleDTO.java
new file mode 100644
index 0000000..a6d7076
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/dto/VehicleDTO.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 org.springblade.modules.vehicle.dto;
+
+import org.springblade.modules.vehicle.entity.VehicleEntity;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 车辆表 数据传输对象实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class VehicleDTO extends VehicleEntity {
+ private static final long serialVersionUID = 1L;
+
+}
diff --git a/src/main/java/org/springblade/modules/vehicle/entity/VehicleEntity.java b/src/main/java/org/springblade/modules/vehicle/entity/VehicleEntity.java
new file mode 100644
index 0000000..254621b
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/entity/VehicleEntity.java
@@ -0,0 +1,55 @@
+/*
+ * 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 org.springblade.modules.vehicle.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 BladeX
+ * @since 2023-03-03
+ */
+@Data
+@TableName("sys_vehicle")
+@ApiModel(value = "Vehicle对象", description = "车辆表")
+@EqualsAndHashCode(callSuper = true)
+public class VehicleEntity extends TenantEntity {
+
+ /**
+ * 车牌号
+ */
+ @ApiModelProperty(value = "车牌号")
+ private String licensePlate;
+ /**
+ * 单位id
+ */
+ @ApiModelProperty(value = "单位id")
+ private String deptId;
+ /**
+ * 车辆类型
+ */
+ @ApiModelProperty(value = "车辆类型")
+ private String type;
+
+}
diff --git a/src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.java b/src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.java
new file mode 100644
index 0000000..801bc24
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.java
@@ -0,0 +1,44 @@
+/*
+ * 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 org.springblade.modules.vehicle.mapper;
+
+import org.apache.ibatis.annotations.Param;
+import org.springblade.modules.vehicle.entity.VehicleEntity;
+import org.springblade.modules.vehicle.vo.VehicleVO;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import java.util.List;
+
+/**
+ * 车辆表 Mapper 接口
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+public interface VehicleMapper extends BaseMapper<VehicleEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param vehicle
+ * @return
+ */
+ List<VehicleVO> selectVehiclePage(IPage page, @Param("vehicle") VehicleVO vehicle);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.xml b/src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.xml
new file mode 100644
index 0000000..d9dc6de
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/mapper/VehicleMapper.xml
@@ -0,0 +1,31 @@
+<?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="org.springblade.modules.vehicle.mapper.VehicleMapper">
+
+ <!-- 通用查询映射结果 -->
+ <resultMap id="vehicleResultMap" type="org.springblade.modules.vehicle.entity.VehicleEntity">
+ <result column="id" property="id"/>
+ <result column="license_plate" property="licensePlate"/>
+ <result column="dept_id" property="deptId"/>
+ <result column="type" property="type"/>
+ <result column="create_user" property="createUser"/>
+ <result column="create_dept" property="createDept"/>
+ <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="tenant_id" property="tenantId"/>
+ </resultMap>
+
+
+ <select id="selectVehiclePage" resultType="org.springblade.modules.vehicle.vo.VehicleVO">
+ select * from sys_vehicle
+ where is_deleted = 0
+ <if test="vehicle.licensePlate !=null and vehicle.licensePlate !='' ">
+ AND license_plate LIKE CONCAT('%',#{vehicle.licensePlate},'%')
+ </if>
+ </select>
+
+
+</mapper>
diff --git a/src/main/java/org/springblade/modules/vehicle/service/IVehicleService.java b/src/main/java/org/springblade/modules/vehicle/service/IVehicleService.java
new file mode 100644
index 0000000..6c2ada3
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/service/IVehicleService.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.vehicle.service;
+
+import org.springblade.modules.vehicle.entity.VehicleEntity;
+import org.springblade.modules.vehicle.vo.VehicleVO;
+import org.springblade.core.mp.base.BaseService;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 车辆表 服务类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+public interface IVehicleService extends BaseService<VehicleEntity> {
+
+ /**
+ * 自定义分页
+ *
+ * @param page
+ * @param vehicle
+ * @return
+ */
+ IPage<VehicleVO> selectVehiclePage(IPage<VehicleVO> page, VehicleVO vehicle);
+
+
+}
diff --git a/src/main/java/org/springblade/modules/vehicle/service/impl/VehicleServiceImpl.java b/src/main/java/org/springblade/modules/vehicle/service/impl/VehicleServiceImpl.java
new file mode 100644
index 0000000..b95478b
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/service/impl/VehicleServiceImpl.java
@@ -0,0 +1,42 @@
+/*
+ * 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 org.springblade.modules.vehicle.service.impl;
+
+import org.springblade.modules.vehicle.entity.VehicleEntity;
+import org.springblade.modules.vehicle.vo.VehicleVO;
+import org.springblade.modules.vehicle.mapper.VehicleMapper;
+import org.springblade.modules.vehicle.service.IVehicleService;
+import org.springblade.core.mp.base.BaseServiceImpl;
+import org.springframework.stereotype.Service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+
+/**
+ * 车辆表 服务实现类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Service
+public class VehicleServiceImpl extends BaseServiceImpl<VehicleMapper, VehicleEntity> implements IVehicleService {
+
+ @Override
+ public IPage<VehicleVO> selectVehiclePage(IPage<VehicleVO> page, VehicleVO vehicle) {
+ return page.setRecords(baseMapper.selectVehiclePage(page, vehicle));
+ }
+
+
+}
diff --git a/src/main/java/org/springblade/modules/vehicle/vo/VehicleVO.java b/src/main/java/org/springblade/modules/vehicle/vo/VehicleVO.java
new file mode 100644
index 0000000..0d6b607
--- /dev/null
+++ b/src/main/java/org/springblade/modules/vehicle/vo/VehicleVO.java
@@ -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 org.springblade.modules.vehicle.vo;
+
+import org.springblade.modules.vehicle.entity.VehicleEntity;
+import org.springblade.core.tool.node.INode;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * 车辆表 视图实体类
+ *
+ * @author BladeX
+ * @since 2023-03-03
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class VehicleVO extends VehicleEntity {
+ private static final long serialVersionUID = 1L;
+
+}
--
Gitblit v1.9.3