mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 16:36:03 +08:00
后端V1.0
This commit is contained in:
@@ -6,9 +6,9 @@ spring:
|
|||||||
druid:
|
druid:
|
||||||
# 主库数据源
|
# 主库数据源
|
||||||
master:
|
master:
|
||||||
url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
url: jdbc:mysql://localhost:3306/wumei-smart?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
||||||
username: root
|
username: root
|
||||||
password: 123456
|
password: admin123
|
||||||
# 从库数据源
|
# 从库数据源
|
||||||
slave:
|
slave:
|
||||||
# 从数据源开关/默认关闭
|
# 从数据源开关/默认关闭
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ spring:
|
|||||||
# 数据库索引
|
# 数据库索引
|
||||||
database: 0
|
database: 0
|
||||||
# 密码
|
# 密码
|
||||||
password: 123456
|
password: admin123
|
||||||
# 连接超时时间
|
# 连接超时时间
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
lettuce:
|
lettuce:
|
||||||
@@ -81,9 +81,9 @@ spring:
|
|||||||
|
|
||||||
mqtt:
|
mqtt:
|
||||||
username: admin # 账号
|
username: admin # 账号
|
||||||
password: 123456 # 密码
|
password: admin # 密码
|
||||||
host-url: tcp://localhost:1884 # mqtt连接tcp地址
|
host-url: tcp://localhost:1883 # mqtt连接tcp地址
|
||||||
client-id: ${random.value} # 客户端Id,每个启动的id要不同
|
client-id: server-${random.value} # 客户端Id,每个启动的id要不同 随机:${random.value}
|
||||||
default-topic: test # 默认主题
|
default-topic: test # 默认主题
|
||||||
timeout: 100 # 超时时间
|
timeout: 100 # 超时时间
|
||||||
keepalive: 100 # 保持连接数
|
keepalive: 100 # 保持连接数
|
||||||
@@ -94,8 +94,8 @@ token:
|
|||||||
header: Authorization
|
header: Authorization
|
||||||
# 令牌密钥
|
# 令牌密钥
|
||||||
secret: abcdefghijklmnopqrstuvwxyz
|
secret: abcdefghijklmnopqrstuvwxyz
|
||||||
# 令牌有效期(默认30分钟)
|
# 令牌有效期(默认30分钟,设置为1周过期)
|
||||||
expireTime: 30
|
expireTime: 10000
|
||||||
|
|
||||||
# MyBatis配置
|
# MyBatis配置
|
||||||
mybatis:
|
mybatis:
|
||||||
@@ -109,7 +109,7 @@ mybatis:
|
|||||||
# PageHelper分页插件
|
# PageHelper分页插件
|
||||||
pagehelper:
|
pagehelper:
|
||||||
helperDialect: mysql
|
helperDialect: mysql
|
||||||
reasonable: true
|
reasonable: false
|
||||||
supportMethodsArguments: true
|
supportMethodsArguments: true
|
||||||
params: count=countSql
|
params: count=countSql
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.controller;
|
package com.ruoyi.system.controller;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.controller;
|
package com.ruoyi.system.controller;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|||||||
@@ -1,9 +1,21 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.controller;
|
package com.ruoyi.system.controller;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
|
import com.ruoyi.system.domain.IotDeviceStatus;
|
||||||
import com.ruoyi.system.mqtt.config.MqttPushClient;
|
import com.ruoyi.system.mqtt.config.MqttPushClient;
|
||||||
|
import com.ruoyi.system.service.IIotDeviceStatusService;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
@@ -38,6 +50,8 @@ public class IotDeviceSetController extends BaseController
|
|||||||
{
|
{
|
||||||
@Autowired
|
@Autowired
|
||||||
private IIotDeviceSetService iotDeviceSetService;
|
private IIotDeviceSetService iotDeviceSetService;
|
||||||
|
@Autowired
|
||||||
|
private IIotDeviceStatusService iotDeviceStatusService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private MqttPushClient mqttPushClient;
|
private MqttPushClient mqttPushClient;
|
||||||
@@ -112,11 +126,51 @@ public class IotDeviceSetController extends BaseController
|
|||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody IotDeviceSet iotDeviceSet)
|
public AjaxResult edit(@RequestBody IotDeviceSet iotDeviceSet)
|
||||||
{
|
{
|
||||||
|
IotDeviceStatus status=iotDeviceStatusService.selectIotDeviceStatusByDeviceId(iotDeviceSet.getDeviceId());
|
||||||
|
if(status.getIsOnline()!=1){return AjaxResult.error("设备已离线,不能更新配置。");}
|
||||||
// 存储
|
// 存储
|
||||||
iotDeviceSetService.updateIotDeviceSet(iotDeviceSet);
|
iotDeviceSetService.updateIotDeviceSet(iotDeviceSet);
|
||||||
// mqtt发布
|
|
||||||
String content = JSON.toJSONString(iotDeviceSet);
|
//
|
||||||
boolean isSuccess=mqttPushClient.publish(0,true,"setting/set/"+iotDeviceSet.getDeviceNum(),content);
|
IotDeviceSet set=iotDeviceSetService.selectIotDeviceSetByDeviceId(iotDeviceSet.getDeviceId());
|
||||||
|
if(iotDeviceSet.getIsRadar()!=null){
|
||||||
|
set.setIsRadar(iotDeviceSet.getIsRadar());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getIsAlarm()!=null){
|
||||||
|
set.setIsAlarm(iotDeviceSet.getIsAlarm());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getRadarInterval()!=null){
|
||||||
|
set.setRadarInterval(iotDeviceSet.getRadarInterval());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getIsRfControl()!=null){
|
||||||
|
set.setIsRfControl(iotDeviceSet.getIsRfControl());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getRfOneFunc()!=null){
|
||||||
|
set.setRfOneFunc(iotDeviceSet.getRfOneFunc());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getRfTwoFunc()!=null){
|
||||||
|
set.setRfTwoFunc(iotDeviceSet.getRfTwoFunc());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getRfThreeFunc()!=null){
|
||||||
|
set.setRfThreeFunc(iotDeviceSet.getRfThreeFunc());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getRfFourFunc()!=null){
|
||||||
|
set.setRfFourFunc(iotDeviceSet.getRfFourFunc());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getIsRfLearn()!=null){
|
||||||
|
set.setIsRfLearn(iotDeviceSet.getIsRfLearn());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getIsRfClear()!=null){
|
||||||
|
set.setIsRfClear(iotDeviceSet.getIsRfClear());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getIsAp()!=null){
|
||||||
|
set.setIsAp(iotDeviceSet.getIsAp());
|
||||||
|
}
|
||||||
|
if(iotDeviceSet.getIsReset()!=null){
|
||||||
|
set.setIsReset(iotDeviceSet.getIsReset());
|
||||||
|
}
|
||||||
|
String content = JSON.toJSONString(set);
|
||||||
|
boolean isSuccess=mqttPushClient.publish(0,true,"setting/set/"+set.getDeviceNum(),content);
|
||||||
if(isSuccess){return AjaxResult.success("mqtt 发布成功");}
|
if(isSuccess){return AjaxResult.success("mqtt 发布成功");}
|
||||||
return AjaxResult.error("mqtt 发布失败。");
|
return AjaxResult.error("mqtt 发布失败。");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.controller;
|
package com.ruoyi.system.controller;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -123,12 +133,43 @@ public class IotDeviceStatusController extends BaseController
|
|||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody IotDeviceStatus iotDeviceStatus)
|
public AjaxResult edit(@RequestBody IotDeviceStatus iotDeviceStatus)
|
||||||
{
|
{
|
||||||
|
IotDeviceStatus status=iotDeviceStatusService.selectIotDeviceStatusByDeviceId(iotDeviceStatus.getDeviceId());
|
||||||
|
if(status.getIsOnline()!=1){return AjaxResult.error("设备已离线,不能更新状态。");}
|
||||||
// 存储
|
// 存储
|
||||||
iotDeviceStatusService.updateIotDeviceStatus(iotDeviceStatus);
|
iotDeviceStatusService.updateIotDeviceStatus(iotDeviceStatus);
|
||||||
|
|
||||||
// mqtt发布
|
// mqtt发布
|
||||||
String content = JSON.toJSONString(iotDeviceStatus);
|
if(iotDeviceStatus.getRelayStatus()!=null){
|
||||||
boolean isSuccess=mqttPushClient.publish(1,true,"status/set/"+iotDeviceStatus.getDeviceNum(),content);
|
status.setRelayStatus(iotDeviceStatus.getRelayStatus());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getLightStatus()!=null){
|
||||||
|
status.setLightStatus(iotDeviceStatus.getLightStatus());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getLightMode()!=null){
|
||||||
|
status.setLightMode(iotDeviceStatus.getLightMode());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getLightInterval()!=null){
|
||||||
|
status.setLightInterval(iotDeviceStatus.getLightInterval());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getFadeTime()!=null){
|
||||||
|
status.setFadeTime(iotDeviceStatus.getFadeTime());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getBrightness()!=null){
|
||||||
|
status.setBrightness(iotDeviceStatus.getBrightness());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getRed()!=null){
|
||||||
|
status.setRed(iotDeviceStatus.getRed());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getGreen()!=null){
|
||||||
|
status.setGreen(iotDeviceStatus.getGreen());
|
||||||
|
}
|
||||||
|
if(iotDeviceStatus.getBlue()!=null){
|
||||||
|
status.setBlue(iotDeviceStatus.getBlue());
|
||||||
|
}
|
||||||
|
String content = JSON.toJSONString(status);
|
||||||
|
boolean isSuccess=mqttPushClient.publish(1,true,"status/set/"+status.getDeviceNum(),content);
|
||||||
if(isSuccess){return AjaxResult.success("mqtt 发布成功");}
|
if(isSuccess){return AjaxResult.success("mqtt 发布成功");}
|
||||||
|
|
||||||
return AjaxResult.error("mqtt 发布失败。");
|
return AjaxResult.error("mqtt 发布失败。");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.controller;
|
package com.ruoyi.system.controller;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.controller;
|
package com.ruoyi.system.controller;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
@@ -22,41 +32,41 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|||||||
@RequestMapping("/system/mqtt")
|
@RequestMapping("/system/mqtt")
|
||||||
public class MqttController extends BaseController
|
public class MqttController extends BaseController
|
||||||
{
|
{
|
||||||
@Autowired
|
// @Autowired
|
||||||
private MqttPushClient mqttPushClient;
|
// private MqttPushClient mqttPushClient;
|
||||||
|
//
|
||||||
@ApiOperation(value = "更新设备状态", notes = "更新设备状态")
|
// @ApiOperation(value = "更新设备状态", notes = "更新设备状态")
|
||||||
@PostMapping(value = "/updateStatus")
|
// @PostMapping(value = "/updateStatus")
|
||||||
public AjaxResult updateStatus(@RequestBody IotDeviceStatus iotDeviceStatus){
|
// public AjaxResult updateStatus(@RequestBody IotDeviceStatus iotDeviceStatus){
|
||||||
String content = JSON.toJSONString(iotDeviceStatus);
|
// String content = JSON.toJSONString(iotDeviceStatus);
|
||||||
boolean isSuccess=mqttPushClient.publish(1,false,"status/set/"+iotDeviceStatus.getDeviceNum(),content);
|
// boolean isSuccess=mqttPushClient.publish(1,false,"status/set/"+iotDeviceStatus.getDeviceNum(),content);
|
||||||
if(isSuccess){return AjaxResult.success();}
|
// if(isSuccess){return AjaxResult.success();}
|
||||||
return AjaxResult.error("mqtt 发布失败。");
|
// return AjaxResult.error("mqtt 发布失败。");
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
@ApiOperation(value = "获取设备状态", notes = "获取设备状态")
|
// @ApiOperation(value = "获取设备状态", notes = "获取设备状态")
|
||||||
@GetMapping(value = "/getStatus/{deviceNum}")
|
// @GetMapping(value = "/getStatus/{deviceNum}")
|
||||||
public AjaxResult getStatus(@PathVariable("deviceNum") String deviceNum){
|
// public AjaxResult getStatus(@PathVariable("deviceNum") String deviceNum){
|
||||||
boolean isSuccess=mqttPushClient.publish(0,false,"status/get/"+deviceNum,"wumei.live");
|
// boolean isSuccess=mqttPushClient.publish(0,false,"status/get/"+deviceNum,"wumei.live");
|
||||||
if(isSuccess){return AjaxResult.success();}
|
// if(isSuccess){return AjaxResult.success();}
|
||||||
return AjaxResult.error("mqtt 发布失败。");
|
// return AjaxResult.error("mqtt 发布失败。");
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
@ApiOperation(value = "更新设备配置", notes = "更新设备配置")
|
// @ApiOperation(value = "更新设备配置", notes = "更新设备配置")
|
||||||
@PostMapping(value = "/updateSetting")
|
// @PostMapping(value = "/updateSetting")
|
||||||
public AjaxResult updateSetting(@RequestBody IotDeviceSet iotDeviceSet){
|
// public AjaxResult updateSetting(@RequestBody IotDeviceSet iotDeviceSet){
|
||||||
String content = JSON.toJSONString(iotDeviceSet);
|
// String content = JSON.toJSONString(iotDeviceSet);
|
||||||
boolean isSuccess=mqttPushClient.publish(0,false,"setting/set/"+iotDeviceSet.getDeviceNum(),content);
|
// boolean isSuccess=mqttPushClient.publish(0,false,"setting/set/"+iotDeviceSet.getDeviceNum(),content);
|
||||||
if(isSuccess){return AjaxResult.success();}
|
// if(isSuccess){return AjaxResult.success();}
|
||||||
return AjaxResult.error("mqtt 发布失败。");
|
// return AjaxResult.error("mqtt 发布失败。");
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
@ApiOperation(value = "获取设备配置", notes = "获取设备配置")
|
// @ApiOperation(value = "获取设备配置", notes = "获取设备配置")
|
||||||
@GetMapping(value = "/getSetting/{deviceNum}")
|
// @GetMapping(value = "/getSetting/{deviceNum}")
|
||||||
public AjaxResult getSetting(@PathVariable("deviceNum") String deviceNum){
|
// public AjaxResult getSetting(@PathVariable("deviceNum") String deviceNum){
|
||||||
boolean isSuccess=mqttPushClient.publish(0,false,"setting/get/"+deviceNum,"wumei.lie");
|
// boolean isSuccess=mqttPushClient.publish(0,false,"setting/get/"+deviceNum,"wumei.lie");
|
||||||
if(isSuccess){return AjaxResult.success();}
|
// if(isSuccess){return AjaxResult.success();}
|
||||||
return AjaxResult.error("mqtt 发布失败。");
|
// return AjaxResult.error("mqtt 发布失败。");
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
@@ -5,6 +15,8 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|||||||
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.annotation.Excel;
|
||||||
import com.ruoyi.common.core.domain.BaseEntity;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设备对象 iot_device
|
* 设备对象 iot_device
|
||||||
*
|
*
|
||||||
@@ -26,6 +38,14 @@ public class IotDevice extends BaseEntity
|
|||||||
@Excel(name = "分类")
|
@Excel(name = "分类")
|
||||||
private Long categoryId;
|
private Long categoryId;
|
||||||
|
|
||||||
|
/** 分类名称 */
|
||||||
|
@Excel(name = "分类名称")
|
||||||
|
private String categoryName;
|
||||||
|
|
||||||
|
/** 分类名称 */
|
||||||
|
@Excel(name = "分类名称")
|
||||||
|
private BigDecimal deviceTemp;
|
||||||
|
|
||||||
/** 名称 */
|
/** 名称 */
|
||||||
@Excel(name = "名称")
|
@Excel(name = "名称")
|
||||||
private String deviceName;
|
private String deviceName;
|
||||||
@@ -38,6 +58,9 @@ public class IotDevice extends BaseEntity
|
|||||||
@Excel(name = "用户")
|
@Excel(name = "用户")
|
||||||
private String ownerId;
|
private String ownerId;
|
||||||
|
|
||||||
|
/** 分组ID */
|
||||||
|
private Long groupId;
|
||||||
|
|
||||||
/** 删除标志(0代表存在 2代表删除) */
|
/** 删除标志(0代表存在 2代表删除) */
|
||||||
private String delFlag;
|
private String delFlag;
|
||||||
|
|
||||||
@@ -45,7 +68,6 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.deviceId = deviceId;
|
this.deviceId = deviceId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getDeviceId()
|
public Long getDeviceId()
|
||||||
{
|
{
|
||||||
return deviceId;
|
return deviceId;
|
||||||
@@ -54,7 +76,6 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.deviceNum = deviceNum;
|
this.deviceNum = deviceNum;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDeviceNum()
|
public String getDeviceNum()
|
||||||
{
|
{
|
||||||
return deviceNum;
|
return deviceNum;
|
||||||
@@ -63,7 +84,6 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.categoryId = categoryId;
|
this.categoryId = categoryId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getCategoryId()
|
public Long getCategoryId()
|
||||||
{
|
{
|
||||||
return categoryId;
|
return categoryId;
|
||||||
@@ -72,7 +92,6 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.deviceName = deviceName;
|
this.deviceName = deviceName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDeviceName()
|
public String getDeviceName()
|
||||||
{
|
{
|
||||||
return deviceName;
|
return deviceName;
|
||||||
@@ -81,7 +100,6 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.firmwareVersion = firmwareVersion;
|
this.firmwareVersion = firmwareVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getFirmwareVersion()
|
public String getFirmwareVersion()
|
||||||
{
|
{
|
||||||
return firmwareVersion;
|
return firmwareVersion;
|
||||||
@@ -90,7 +108,6 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.ownerId = ownerId;
|
this.ownerId = ownerId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getOwnerId()
|
public String getOwnerId()
|
||||||
{
|
{
|
||||||
return ownerId;
|
return ownerId;
|
||||||
@@ -99,18 +116,44 @@ public class IotDevice extends BaseEntity
|
|||||||
{
|
{
|
||||||
this.delFlag = delFlag;
|
this.delFlag = delFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDelFlag()
|
public String getDelFlag()
|
||||||
{
|
{
|
||||||
return delFlag;
|
return delFlag;
|
||||||
}
|
}
|
||||||
|
public Long getGroupId()
|
||||||
|
{
|
||||||
|
return groupId;
|
||||||
|
}
|
||||||
|
public void setGroupId(Long groupId)
|
||||||
|
{
|
||||||
|
this.groupId = groupId;
|
||||||
|
}
|
||||||
|
public void setDeviceTemp(BigDecimal deviceTemp)
|
||||||
|
{
|
||||||
|
this.deviceTemp = deviceTemp;
|
||||||
|
}
|
||||||
|
public BigDecimal getDeviceTemp()
|
||||||
|
{
|
||||||
|
return deviceTemp;
|
||||||
|
}
|
||||||
|
public void setCategoryName(String categoryName)
|
||||||
|
{
|
||||||
|
this.categoryName = categoryName;
|
||||||
|
}
|
||||||
|
public String getCategoryName()
|
||||||
|
{
|
||||||
|
return categoryName;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
.append("deviceId", getDeviceId())
|
.append("deviceId", getDeviceId())
|
||||||
.append("deviceNum", getDeviceNum())
|
.append("deviceNum", getDeviceNum())
|
||||||
|
.append("categoryName", getCategoryName())
|
||||||
|
.append("deviceTemp", getDeviceTemp())
|
||||||
.append("categoryId", getCategoryId())
|
.append("categoryId", getCategoryId())
|
||||||
|
.append("groupId", getGroupId())
|
||||||
.append("deviceName", getDeviceName())
|
.append("deviceName", getDeviceName())
|
||||||
.append("firmwareVersion", getFirmwareVersion())
|
.append("firmwareVersion", getFirmwareVersion())
|
||||||
.append("ownerId", getOwnerId())
|
.append("ownerId", getOwnerId())
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain;
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.domain.vo;
|
package com.ruoyi.system.domain.vo;
|
||||||
|
|
||||||
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.annotation.Excel;
|
||||||
@@ -28,6 +38,10 @@ public class IotDeviceListDto extends BaseEntity
|
|||||||
@Excel(name = "分类")
|
@Excel(name = "分类")
|
||||||
private Long categoryId;
|
private Long categoryId;
|
||||||
|
|
||||||
|
/** 分类名称 */
|
||||||
|
@Excel(name = "分类名称")
|
||||||
|
private String categoryName;
|
||||||
|
|
||||||
/** 名称 */
|
/** 名称 */
|
||||||
@Excel(name = "名称")
|
@Excel(name = "名称")
|
||||||
private String deviceName;
|
private String deviceName;
|
||||||
@@ -114,6 +128,14 @@ public class IotDeviceListDto extends BaseEntity
|
|||||||
{
|
{
|
||||||
return categoryId;
|
return categoryId;
|
||||||
}
|
}
|
||||||
|
public void setCategoryName(String categoryName)
|
||||||
|
{
|
||||||
|
this.categoryName = categoryName;
|
||||||
|
}
|
||||||
|
public String getCategoryName()
|
||||||
|
{
|
||||||
|
return categoryName;
|
||||||
|
}
|
||||||
public void setDeviceName(String deviceName)
|
public void setDeviceName(String deviceName)
|
||||||
{
|
{
|
||||||
this.deviceName = deviceName;
|
this.deviceName = deviceName;
|
||||||
@@ -243,6 +265,7 @@ public class IotDeviceListDto extends BaseEntity
|
|||||||
.append("deviceId", getDeviceId())
|
.append("deviceId", getDeviceId())
|
||||||
.append("deviceNum", getDeviceNum())
|
.append("deviceNum", getDeviceNum())
|
||||||
.append("categoryId", getCategoryId())
|
.append("categoryId", getCategoryId())
|
||||||
|
.append("categoryName", getCategoryName())
|
||||||
.append("deviceName", getDeviceName())
|
.append("deviceName", getDeviceName())
|
||||||
.append("firmwareVersion", getFirmwareVersion())
|
.append("firmwareVersion", getFirmwareVersion())
|
||||||
.append("ownerId", getOwnerId())
|
.append("ownerId", getOwnerId())
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.mqtt.config;
|
package com.ruoyi.system.mqtt.config;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.mqtt.config;
|
package com.ruoyi.system.mqtt.config;
|
||||||
|
|
||||||
import org.eclipse.paho.client.mqttv3.*;
|
import org.eclipse.paho.client.mqttv3.*;
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
/******************************************************************************
|
||||||
|
* 作者:kerwincui
|
||||||
|
* 时间:2021-06-08
|
||||||
|
* 邮箱:164770707@qq.com
|
||||||
|
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||||||
|
* author: kerwincui
|
||||||
|
* create: 2021-06-08
|
||||||
|
* email:164770707@qq.com
|
||||||
|
* source:https://github.com/kerwincui/wumei-smart
|
||||||
|
******************************************************************************/
|
||||||
package com.ruoyi.system.mqtt.config;
|
package com.ruoyi.system.mqtt.config;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
@@ -22,6 +32,7 @@ import org.slf4j.Logger;
|
|||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Classname PushCallback
|
* @Classname PushCallback
|
||||||
@@ -72,7 +83,8 @@ public class PushCallback implements MqttCallback {
|
|||||||
}else {
|
}else {
|
||||||
IotCategory categoryEntity=iotCategoryService.selectIotCategoryById(device.getCategoryId());
|
IotCategory categoryEntity=iotCategoryService.selectIotCategoryById(device.getCategoryId());
|
||||||
if(device.getDeviceName()==null || device.getDeviceNum().length()==0) {
|
if(device.getDeviceName()==null || device.getDeviceNum().length()==0) {
|
||||||
device.setDeviceName(categoryEntity.getCategoryName());
|
Random rand = new Random(); //随机生成两位数
|
||||||
|
device.setDeviceName(categoryEntity.getCategoryName()+(rand.nextInt(90) + 10));
|
||||||
}
|
}
|
||||||
iotDeviceService.insertIotDevice(device);
|
iotDeviceService.insertIotDevice(device);
|
||||||
}
|
}
|
||||||
@@ -89,13 +101,12 @@ public class PushCallback implements MqttCallback {
|
|||||||
}else if(topic.equals("setting")){
|
}else if(topic.equals("setting")){
|
||||||
IotDeviceSet deviceSet = JSON.parseObject(new String(mqttMessage.getPayload()), IotDeviceSet.class);
|
IotDeviceSet deviceSet = JSON.parseObject(new String(mqttMessage.getPayload()), IotDeviceSet.class);
|
||||||
// 智能配网时需要获取IP、地址和设备用户
|
// 智能配网时需要获取IP、地址和设备用户
|
||||||
IotDevice device=null;
|
IotDevice device=iotDeviceService.selectIotDeviceByNum(deviceSet.getDeviceNum());
|
||||||
if(deviceSet.getIsSmartConfig()==1){
|
if(deviceSet.getIsSmartConfig()==1){
|
||||||
final String ip = IpUtils.getIpAddr(ServletUtils.getRequest());
|
final String ip = IpUtils.getIpAddr(ServletUtils.getRequest());
|
||||||
deviceSet.setNetworkIp(ip);
|
deviceSet.setNetworkIp(ip);
|
||||||
deviceSet.setNetworkAddress( AddressUtils.getRealAddressByIP(ip));
|
deviceSet.setNetworkAddress( AddressUtils.getRealAddressByIP(ip));
|
||||||
//更新设备用户
|
//更新设备用户
|
||||||
device=iotDeviceService.selectIotDeviceByNum(deviceSet.getDeviceNum());
|
|
||||||
device.setOwnerId(deviceSet.getOwnerId());
|
device.setOwnerId(deviceSet.getOwnerId());
|
||||||
iotDeviceService.updateIotDevice(device);
|
iotDeviceService.updateIotDevice(device);
|
||||||
}
|
}
|
||||||
@@ -103,14 +114,13 @@ public class PushCallback implements MqttCallback {
|
|||||||
deviceSet.setDeviceId(device.getDeviceId());
|
deviceSet.setDeviceId(device.getDeviceId());
|
||||||
iotDeviceSetService.insertIotDeviceSet(deviceSet);
|
iotDeviceSetService.insertIotDeviceSet(deviceSet);
|
||||||
}else if(topic.equals("offline")){
|
}else if(topic.equals("offline")){
|
||||||
//离线遗嘱 TODO:查询待优化
|
//离线遗嘱
|
||||||
IotDeviceStatus deviceStatus = JSON.parseObject(new String(mqttMessage.getPayload()), IotDeviceStatus.class);
|
IotDeviceStatus deviceStatus = JSON.parseObject(new String(mqttMessage.getPayload()), IotDeviceStatus.class);
|
||||||
IotDevice device=iotDeviceService.selectIotDeviceByNum(deviceStatus.getDeviceNum());
|
IotDeviceStatus deviceStatusEntity=iotDeviceStatusService.selectIotDeviceStatusByDeviceNum(deviceStatus.getDeviceNum());
|
||||||
IotDeviceStatus deviceStatusEntity=iotDeviceStatusService.selectIotDeviceStatusByDeviceId(device.getDeviceId());
|
//设备状态为离线
|
||||||
//跟新最近一条设备状态为离线
|
|
||||||
if(deviceStatusEntity!=null) {
|
if(deviceStatusEntity!=null) {
|
||||||
deviceStatusEntity.setIsOnline(0);
|
deviceStatusEntity.setIsOnline(0);
|
||||||
iotDeviceStatusService.updateIotDeviceStatus(deviceStatusEntity);
|
iotDeviceStatusService.insertIotDeviceStatus(deviceStatusEntity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="deviceId" column="device_id" />
|
<result property="deviceId" column="device_id" />
|
||||||
<result property="deviceNum" column="device_num" />
|
<result property="deviceNum" column="device_num" />
|
||||||
<result property="categoryId" column="category_id" />
|
<result property="categoryId" column="category_id" />
|
||||||
|
<result property="categoryName" column="category_Name" />
|
||||||
|
<result property="deviceTemp" column="device_temp" />
|
||||||
<result property="deviceName" column="device_name" />
|
<result property="deviceName" column="device_name" />
|
||||||
<result property="firmwareVersion" column="firmware_version" />
|
<result property="firmwareVersion" column="firmware_version" />
|
||||||
<result property="ownerId" column="owner_id" />
|
<result property="ownerId" column="owner_id" />
|
||||||
@@ -22,6 +24,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="deviceId" column="device_id" />
|
<result property="deviceId" column="device_id" />
|
||||||
<result property="deviceNum" column="device_num" />
|
<result property="deviceNum" column="device_num" />
|
||||||
<result property="categoryId" column="category_id" />
|
<result property="categoryId" column="category_id" />
|
||||||
|
<result property="categoryName" column="category_Name" />
|
||||||
<result property="deviceName" column="device_name" />
|
<result property="deviceName" column="device_name" />
|
||||||
<result property="firmwareVersion" column="firmware_version" />
|
<result property="firmwareVersion" column="firmware_version" />
|
||||||
<result property="ownerId" column="owner_id" />
|
<result property="ownerId" column="owner_id" />
|
||||||
@@ -40,41 +43,59 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="selectIotDeviceVo">
|
<sql id="selectIotDeviceVo">
|
||||||
select device_id, device_num, category_id, device_name, firmware_version, owner_id, create_by, create_time, update_by, update_time, remark from iot_device
|
select d.device_id, d.device_num, d.category_id, d.device_name, d.firmware_version, d.owner_id, d.create_by, d.create_time, d.update_by, d.update_time, d.remark,
|
||||||
|
c.category_name,
|
||||||
|
s.device_temperature as device_temp
|
||||||
|
from iot_device d
|
||||||
|
left join iot_category c on d.category_id=c.category_id
|
||||||
|
left join (select device_id,device_temperature from iot_device_status
|
||||||
|
right join (select max(device_status_id) as status_id from iot_device_status group by device_id) mt
|
||||||
|
on mt.status_id=device_status_id ) as s
|
||||||
|
on d.device_id=s.device_id
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<sql id="selectIotDeviceListVo">
|
<sql id="selectIotDeviceListVo">
|
||||||
select d.device_id, d.device_num, d.category_id, d.device_name, d.firmware_version, d.owner_id, d.create_time,
|
select d.device_id, d.device_num, d.category_id, d.device_name, d.firmware_version, d.owner_id, d.create_time,
|
||||||
s.relay_status,s.light_status,s.is_online,s.rssi,s.device_temperature,
|
s.relay_status,s.light_status,s.is_online,s.rssi,s.device_temperature,
|
||||||
t.network_address, t.network_ip,t.is_alarm, t.is_radar,t.is_rf_control,
|
t.network_address, t.network_ip,t.is_alarm, t.is_radar,t.is_rf_control,
|
||||||
u.nick_name
|
u.nick_name,
|
||||||
|
c.category_name
|
||||||
|
<if test="groupId != null and groupId!=0">,g.group_id </if>
|
||||||
from iot_device d
|
from iot_device d
|
||||||
left join (select * from iot_device_set order by create_time desc limit 1) as t on d.device_id = t.device_id
|
left join (select * from iot_device_set
|
||||||
left join (select * from iot_device_status order by create_time desc limit 1 ) as s on d.device_id=s.device_id
|
right join (select max(device_set_id) as set_id from iot_device_set group by device_id) ms on ms.set_id=device_set_id ) as t
|
||||||
|
on d.device_id = t.device_id
|
||||||
|
left join (select * from iot_device_status
|
||||||
|
right join (select max(device_status_id) as status_id from iot_device_status group by device_id) mt on mt.status_id=device_status_id ) as s
|
||||||
|
on d.device_id=s.device_id
|
||||||
left join sys_user u on d.owner_id=u.user_id
|
left join sys_user u on d.owner_id=u.user_id
|
||||||
|
left join iot_category c on d.category_id=c.category_id
|
||||||
|
<if test="groupId != null and groupId!=0"> left join iot_device_group g on d.device_id=g.device_id </if>
|
||||||
|
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<select id="selectIotDeviceList" parameterType="IotDevice" resultMap="IotDeviceListResult">
|
<select id="selectIotDeviceList" parameterType="IotDevice" resultMap="IotDeviceListResult">
|
||||||
<include refid="selectIotDeviceListVo"/>
|
<include refid="selectIotDeviceListVo"/>
|
||||||
<where>
|
<where>
|
||||||
d.del_flag= '0'
|
d.del_flag= '0'
|
||||||
<if test="deviceNum != null and deviceNum != ''"> and device_num like concat('%', #{deviceNum}, '%')</if>
|
<if test="deviceNum != null and deviceNum != ''"> and d.device_num like concat('%', #{deviceNum}, '%')</if>
|
||||||
<if test="categoryId != null "> and category_id = #{categoryId}</if>
|
<if test="categoryId != null "> and d.category_id = #{categoryId}</if>
|
||||||
<if test="deviceName != null and deviceName != ''"> and device_name like concat('%', #{deviceName}, '%')</if>
|
<if test="groupId != null and groupId!=0 "> and g.group_id = #{groupId}</if>
|
||||||
<if test="firmwareVersion != null and firmwareVersion != ''"> and firmware_version like concat('%', #{firmwareVersion}, '%')</if>
|
<if test="deviceName != null and deviceName != ''"> and d.device_name like concat('%', #{deviceName}, '%')</if>
|
||||||
<if test="ownerId != null and ownerId != ''"> and owner_id like concat('%', #{ownerId}, '%')</if>
|
<if test="firmwareVersion != null and firmwareVersion != ''"> and d.firmware_version like concat('%', #{firmwareVersion}, '%')</if>
|
||||||
|
<if test="ownerId != null and ownerId != ''"> and d.owner_id like concat('%', #{ownerId}, '%')</if>
|
||||||
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
|
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectIotDeviceById" parameterType="Long" resultMap="IotDeviceResult">
|
<select id="selectIotDeviceById" parameterType="Long" resultMap="IotDeviceResult">
|
||||||
<include refid="selectIotDeviceVo"/>
|
<include refid="selectIotDeviceVo"/>
|
||||||
where device_id = #{deviceId}
|
where d.device_id = #{deviceId}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectIotDeviceByNum" parameterType="String" resultMap="IotDeviceResult">
|
<select id="selectIotDeviceByNum" parameterType="String" resultMap="IotDeviceResult">
|
||||||
<include refid="selectIotDeviceVo"/>
|
<include refid="selectIotDeviceVo"/>
|
||||||
where device_num = #{deviceNum}
|
where d.device_num = #{deviceNum}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<insert id="insertIotDevice" parameterType="IotDevice" useGeneratedKeys="true" keyProperty="deviceId">
|
<insert id="insertIotDevice" parameterType="IotDevice" useGeneratedKeys="true" keyProperty="deviceId">
|
||||||
|
|||||||
@@ -1,170 +0,0 @@
|
|||||||
-- ----------------------------
|
|
||||||
-- 1、存储每一个已配置的 jobDetail 的详细信息
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_JOB_DETAILS;
|
|
||||||
create table QRTZ_JOB_DETAILS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
job_name varchar(200) not null,
|
|
||||||
job_group varchar(200) not null,
|
|
||||||
description varchar(250) null,
|
|
||||||
job_class_name varchar(250) not null,
|
|
||||||
is_durable varchar(1) not null,
|
|
||||||
is_nonconcurrent varchar(1) not null,
|
|
||||||
is_update_data varchar(1) not null,
|
|
||||||
requests_recovery varchar(1) not null,
|
|
||||||
job_data blob null,
|
|
||||||
primary key (sched_name,job_name,job_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 2、 存储已配置的 Trigger 的信息
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_TRIGGERS;
|
|
||||||
create table QRTZ_TRIGGERS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
trigger_name varchar(200) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
job_name varchar(200) not null,
|
|
||||||
job_group varchar(200) not null,
|
|
||||||
description varchar(250) null,
|
|
||||||
next_fire_time bigint(13) null,
|
|
||||||
prev_fire_time bigint(13) null,
|
|
||||||
priority integer null,
|
|
||||||
trigger_state varchar(16) not null,
|
|
||||||
trigger_type varchar(8) not null,
|
|
||||||
start_time bigint(13) not null,
|
|
||||||
end_time bigint(13) null,
|
|
||||||
calendar_name varchar(200) null,
|
|
||||||
misfire_instr smallint(2) null,
|
|
||||||
job_data blob null,
|
|
||||||
primary key (sched_name,trigger_name,trigger_group),
|
|
||||||
foreign key (sched_name,job_name,job_group) references QRTZ_JOB_DETAILS(sched_name,job_name,job_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 3、 存储简单的 Trigger,包括重复次数,间隔,以及已触发的次数
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_SIMPLE_TRIGGERS;
|
|
||||||
create table QRTZ_SIMPLE_TRIGGERS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
trigger_name varchar(200) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
repeat_count bigint(7) not null,
|
|
||||||
repeat_interval bigint(12) not null,
|
|
||||||
times_triggered bigint(10) not null,
|
|
||||||
primary key (sched_name,trigger_name,trigger_group),
|
|
||||||
foreign key (sched_name,trigger_name,trigger_group) references QRTZ_TRIGGERS(sched_name,trigger_name,trigger_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 4、 存储 Cron Trigger,包括 Cron 表达式和时区信息
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_CRON_TRIGGERS;
|
|
||||||
create table QRTZ_CRON_TRIGGERS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
trigger_name varchar(200) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
cron_expression varchar(200) not null,
|
|
||||||
time_zone_id varchar(80),
|
|
||||||
primary key (sched_name,trigger_name,trigger_group),
|
|
||||||
foreign key (sched_name,trigger_name,trigger_group) references QRTZ_TRIGGERS(sched_name,trigger_name,trigger_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 5、 Trigger 作为 Blob 类型存储(用于 Quartz 用户用 JDBC 创建他们自己定制的 Trigger 类型,JobStore 并不知道如何存储实例的时候)
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_BLOB_TRIGGERS;
|
|
||||||
create table QRTZ_BLOB_TRIGGERS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
trigger_name varchar(200) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
blob_data blob null,
|
|
||||||
primary key (sched_name,trigger_name,trigger_group),
|
|
||||||
foreign key (sched_name,trigger_name,trigger_group) references QRTZ_TRIGGERS(sched_name,trigger_name,trigger_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 6、 以 Blob 类型存储存放日历信息, quartz可配置一个日历来指定一个时间范围
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_CALENDARS;
|
|
||||||
create table QRTZ_CALENDARS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
calendar_name varchar(200) not null,
|
|
||||||
calendar blob not null,
|
|
||||||
primary key (sched_name,calendar_name)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 7、 存储已暂停的 Trigger 组的信息
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_PAUSED_TRIGGER_GRPS;
|
|
||||||
create table QRTZ_PAUSED_TRIGGER_GRPS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
primary key (sched_name,trigger_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 8、 存储与已触发的 Trigger 相关的状态信息,以及相联 Job 的执行信息
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_FIRED_TRIGGERS;
|
|
||||||
create table QRTZ_FIRED_TRIGGERS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
entry_id varchar(95) not null,
|
|
||||||
trigger_name varchar(200) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
instance_name varchar(200) not null,
|
|
||||||
fired_time bigint(13) not null,
|
|
||||||
sched_time bigint(13) not null,
|
|
||||||
priority integer not null,
|
|
||||||
state varchar(16) not null,
|
|
||||||
job_name varchar(200) null,
|
|
||||||
job_group varchar(200) null,
|
|
||||||
is_nonconcurrent varchar(1) null,
|
|
||||||
requests_recovery varchar(1) null,
|
|
||||||
primary key (sched_name,entry_id)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 9、 存储少量的有关 Scheduler 的状态信息,假如是用于集群中,可以看到其他的 Scheduler 实例
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_SCHEDULER_STATE;
|
|
||||||
create table QRTZ_SCHEDULER_STATE (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
instance_name varchar(200) not null,
|
|
||||||
last_checkin_time bigint(13) not null,
|
|
||||||
checkin_interval bigint(13) not null,
|
|
||||||
primary key (sched_name,instance_name)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 10、 存储程序的悲观锁的信息(假如使用了悲观锁)
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists QRTZ_LOCKS;
|
|
||||||
create table QRTZ_LOCKS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
lock_name varchar(40) not null,
|
|
||||||
primary key (sched_name,lock_name)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
drop table if exists QRTZ_SIMPROP_TRIGGERS;
|
|
||||||
create table QRTZ_SIMPROP_TRIGGERS (
|
|
||||||
sched_name varchar(120) not null,
|
|
||||||
trigger_name varchar(200) not null,
|
|
||||||
trigger_group varchar(200) not null,
|
|
||||||
str_prop_1 varchar(512) null,
|
|
||||||
str_prop_2 varchar(512) null,
|
|
||||||
str_prop_3 varchar(512) null,
|
|
||||||
int_prop_1 int null,
|
|
||||||
int_prop_2 int null,
|
|
||||||
long_prop_1 bigint null,
|
|
||||||
long_prop_2 bigint null,
|
|
||||||
dec_prop_1 numeric(13,4) null,
|
|
||||||
dec_prop_2 numeric(13,4) null,
|
|
||||||
bool_prop_1 varchar(1) null,
|
|
||||||
bool_prop_2 varchar(1) null,
|
|
||||||
primary key (sched_name,trigger_name,trigger_group),
|
|
||||||
foreign key (sched_name,trigger_name,trigger_group) references QRTZ_TRIGGERS(sched_name,trigger_name,trigger_group)
|
|
||||||
) engine=innodb;
|
|
||||||
|
|
||||||
commit;
|
|
||||||
@@ -1,685 +0,0 @@
|
|||||||
-- ----------------------------
|
|
||||||
-- 1、部门表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_dept;
|
|
||||||
create table sys_dept (
|
|
||||||
dept_id bigint(20) not null auto_increment comment '部门id',
|
|
||||||
parent_id bigint(20) default 0 comment '父部门id',
|
|
||||||
ancestors varchar(50) default '' comment '祖级列表',
|
|
||||||
dept_name varchar(30) default '' comment '部门名称',
|
|
||||||
order_num int(4) default 0 comment '显示顺序',
|
|
||||||
leader varchar(20) default null comment '负责人',
|
|
||||||
phone varchar(11) default null comment '联系电话',
|
|
||||||
email varchar(50) default null comment '邮箱',
|
|
||||||
status char(1) default '0' comment '部门状态(0正常 1停用)',
|
|
||||||
del_flag char(1) default '0' comment '删除标志(0代表存在 2代表删除)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
primary key (dept_id)
|
|
||||||
) engine=innodb auto_increment=200 comment = '部门表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-部门表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_dept values(100, 0, '0', '若依科技', 0, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(101, 100, '0,100', '深圳总公司', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(102, 100, '0,100', '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
insert into sys_dept values(109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate(), '', null);
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 2、用户信息表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_user;
|
|
||||||
create table sys_user (
|
|
||||||
user_id bigint(20) not null auto_increment comment '用户ID',
|
|
||||||
dept_id bigint(20) default null comment '部门ID',
|
|
||||||
user_name varchar(30) not null comment '用户账号',
|
|
||||||
nick_name varchar(30) not null comment '用户昵称',
|
|
||||||
user_type varchar(2) default '00' comment '用户类型(00系统用户)',
|
|
||||||
email varchar(50) default '' comment '用户邮箱',
|
|
||||||
phonenumber varchar(11) default '' comment '手机号码',
|
|
||||||
sex char(1) default '0' comment '用户性别(0男 1女 2未知)',
|
|
||||||
avatar varchar(100) default '' comment '头像地址',
|
|
||||||
password varchar(100) default '' comment '密码',
|
|
||||||
status char(1) default '0' comment '帐号状态(0正常 1停用)',
|
|
||||||
del_flag char(1) default '0' comment '删除标志(0代表存在 2代表删除)',
|
|
||||||
login_ip varchar(128) default '' comment '最后登录IP',
|
|
||||||
login_date datetime comment '最后登录时间',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (user_id)
|
|
||||||
) engine=innodb auto_increment=100 comment = '用户信息表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-用户信息表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_user values(1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', sysdate(), 'admin', sysdate(), '', null, '管理员');
|
|
||||||
insert into sys_user values(2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', sysdate(), 'admin', sysdate(), '', null, '测试员');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 3、岗位信息表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_post;
|
|
||||||
create table sys_post
|
|
||||||
(
|
|
||||||
post_id bigint(20) not null auto_increment comment '岗位ID',
|
|
||||||
post_code varchar(64) not null comment '岗位编码',
|
|
||||||
post_name varchar(50) not null comment '岗位名称',
|
|
||||||
post_sort int(4) not null comment '显示顺序',
|
|
||||||
status char(1) not null comment '状态(0正常 1停用)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (post_id)
|
|
||||||
) engine=innodb comment = '岗位信息表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-岗位信息表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_post values(1, 'ceo', '董事长', 1, '0', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_post values(2, 'se', '项目经理', 2, '0', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_post values(3, 'hr', '人力资源', 3, '0', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_post values(4, 'user', '普通员工', 4, '0', 'admin', sysdate(), '', null, '');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 4、角色信息表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_role;
|
|
||||||
create table sys_role (
|
|
||||||
role_id bigint(20) not null auto_increment comment '角色ID',
|
|
||||||
role_name varchar(30) not null comment '角色名称',
|
|
||||||
role_key varchar(100) not null comment '角色权限字符串',
|
|
||||||
role_sort int(4) not null comment '显示顺序',
|
|
||||||
data_scope char(1) default '1' comment '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
|
|
||||||
menu_check_strictly tinyint(1) default 1 comment '菜单树选择项是否关联显示',
|
|
||||||
dept_check_strictly tinyint(1) default 1 comment '部门树选择项是否关联显示',
|
|
||||||
status char(1) not null comment '角色状态(0正常 1停用)',
|
|
||||||
del_flag char(1) default '0' comment '删除标志(0代表存在 2代表删除)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (role_id)
|
|
||||||
) engine=innodb auto_increment=100 comment = '角色信息表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-角色信息表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_role values('1', '超级管理员', 'admin', 1, 1, 1, 1, '0', '0', 'admin', sysdate(), '', null, '超级管理员');
|
|
||||||
insert into sys_role values('2', '普通角色', 'common', 2, 2, 1, 1, '0', '0', 'admin', sysdate(), '', null, '普通角色');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 5、菜单权限表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_menu;
|
|
||||||
create table sys_menu (
|
|
||||||
menu_id bigint(20) not null auto_increment comment '菜单ID',
|
|
||||||
menu_name varchar(50) not null comment '菜单名称',
|
|
||||||
parent_id bigint(20) default 0 comment '父菜单ID',
|
|
||||||
order_num int(4) default 0 comment '显示顺序',
|
|
||||||
path varchar(200) default '' comment '路由地址',
|
|
||||||
component varchar(255) default null comment '组件路径',
|
|
||||||
is_frame int(1) default 1 comment '是否为外链(0是 1否)',
|
|
||||||
is_cache int(1) default 0 comment '是否缓存(0缓存 1不缓存)',
|
|
||||||
menu_type char(1) default '' comment '菜单类型(M目录 C菜单 F按钮)',
|
|
||||||
visible char(1) default 0 comment '菜单状态(0显示 1隐藏)',
|
|
||||||
status char(1) default 0 comment '菜单状态(0正常 1停用)',
|
|
||||||
perms varchar(100) default null comment '权限标识',
|
|
||||||
icon varchar(100) default '#' comment '菜单图标',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default '' comment '备注',
|
|
||||||
primary key (menu_id)
|
|
||||||
) engine=innodb auto_increment=2000 comment = '菜单权限表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-菜单信息表数据
|
|
||||||
-- ----------------------------
|
|
||||||
-- 一级菜单
|
|
||||||
insert into sys_menu values('1', '系统管理', '0', '1', 'system', null, 1, 0, 'M', '0', '0', '', 'system', 'admin', sysdate(), '', null, '系统管理目录');
|
|
||||||
insert into sys_menu values('2', '系统监控', '0', '2', 'monitor', null, 1, 0, 'M', '0', '0', '', 'monitor', 'admin', sysdate(), '', null, '系统监控目录');
|
|
||||||
insert into sys_menu values('3', '系统工具', '0', '3', 'tool', null, 1, 0, 'M', '0', '0', '', 'tool', 'admin', sysdate(), '', null, '系统工具目录');
|
|
||||||
insert into sys_menu values('4', '若依官网', '0', '4', 'http://ruoyi.vip', null , 0, 0, 'M', '0', '0', '', 'guide', 'admin', sysdate(), '', null, '若依官网地址');
|
|
||||||
-- 二级菜单
|
|
||||||
insert into sys_menu values('100', '用户管理', '1', '1', 'user', 'system/user/index', 1, 0, 'C', '0', '0', 'system:user:list', 'user', 'admin', sysdate(), '', null, '用户管理菜单');
|
|
||||||
insert into sys_menu values('101', '角色管理', '1', '2', 'role', 'system/role/index', 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', 'admin', sysdate(), '', null, '角色管理菜单');
|
|
||||||
insert into sys_menu values('102', '菜单管理', '1', '3', 'menu', 'system/menu/index', 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', 'admin', sysdate(), '', null, '菜单管理菜单');
|
|
||||||
insert into sys_menu values('103', '部门管理', '1', '4', 'dept', 'system/dept/index', 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', 'admin', sysdate(), '', null, '部门管理菜单');
|
|
||||||
insert into sys_menu values('104', '岗位管理', '1', '5', 'post', 'system/post/index', 1, 0, 'C', '0', '0', 'system:post:list', 'post', 'admin', sysdate(), '', null, '岗位管理菜单');
|
|
||||||
insert into sys_menu values('105', '字典管理', '1', '6', 'dict', 'system/dict/index', 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', 'admin', sysdate(), '', null, '字典管理菜单');
|
|
||||||
insert into sys_menu values('106', '参数设置', '1', '7', 'config', 'system/config/index', 1, 0, 'C', '0', '0', 'system:config:list', 'edit', 'admin', sysdate(), '', null, '参数设置菜单');
|
|
||||||
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 'admin', sysdate(), '', null, '通知公告菜单');
|
|
||||||
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', 1, 0, 'M', '0', '0', '', 'log', 'admin', sysdate(), '', null, '日志管理菜单');
|
|
||||||
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 'admin', sysdate(), '', null, '在线用户菜单');
|
|
||||||
insert into sys_menu values('110', '定时任务', '2', '2', 'job', 'monitor/job/index', 1, 0, 'C', '0', '0', 'monitor:job:list', 'job', 'admin', sysdate(), '', null, '定时任务菜单');
|
|
||||||
insert into sys_menu values('111', '数据监控', '2', '3', 'druid', 'monitor/druid/index', 1, 0, 'C', '0', '0', 'monitor:druid:list', 'druid', 'admin', sysdate(), '', null, '数据监控菜单');
|
|
||||||
insert into sys_menu values('112', '服务监控', '2', '4', 'server', 'monitor/server/index', 1, 0, 'C', '0', '0', 'monitor:server:list', 'server', 'admin', sysdate(), '', null, '服务监控菜单');
|
|
||||||
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 'admin', sysdate(), '', null, '缓存监控菜单');
|
|
||||||
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 'admin', sysdate(), '', null, '表单构建菜单');
|
|
||||||
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 'admin', sysdate(), '', null, '代码生成菜单');
|
|
||||||
insert into sys_menu values('116', '系统接口', '3', '3', 'swagger', 'tool/swagger/index', 1, 0, 'C', '0', '0', 'tool:swagger:list', 'swagger', 'admin', sysdate(), '', null, '系统接口菜单');
|
|
||||||
-- 三级菜单
|
|
||||||
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 'admin', sysdate(), '', null, '操作日志菜单');
|
|
||||||
insert into sys_menu values('501', '登录日志', '108', '2', 'logininfor', 'monitor/logininfor/index', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 'admin', sysdate(), '', null, '登录日志菜单');
|
|
||||||
-- 用户管理按钮
|
|
||||||
insert into sys_menu values('1001', '用户查询', '100', '1', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1002', '用户新增', '100', '2', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1003', '用户修改', '100', '3', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1004', '用户删除', '100', '4', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1005', '用户导出', '100', '5', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1006', '用户导入', '100', '6', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1007', '重置密码', '100', '7', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 角色管理按钮
|
|
||||||
insert into sys_menu values('1008', '角色查询', '101', '1', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1009', '角色新增', '101', '2', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1010', '角色修改', '101', '3', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1011', '角色删除', '101', '4', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1012', '角色导出', '101', '5', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 菜单管理按钮
|
|
||||||
insert into sys_menu values('1013', '菜单查询', '102', '1', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1014', '菜单新增', '102', '2', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1015', '菜单修改', '102', '3', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1016', '菜单删除', '102', '4', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 部门管理按钮
|
|
||||||
insert into sys_menu values('1017', '部门查询', '103', '1', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1018', '部门新增', '103', '2', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1019', '部门修改', '103', '3', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1020', '部门删除', '103', '4', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 岗位管理按钮
|
|
||||||
insert into sys_menu values('1021', '岗位查询', '104', '1', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1022', '岗位新增', '104', '2', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1023', '岗位修改', '104', '3', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1024', '岗位删除', '104', '4', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1025', '岗位导出', '104', '5', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 字典管理按钮
|
|
||||||
insert into sys_menu values('1026', '字典查询', '105', '1', '#', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1027', '字典新增', '105', '2', '#', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1028', '字典修改', '105', '3', '#', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1029', '字典删除', '105', '4', '#', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1030', '字典导出', '105', '5', '#', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 参数设置按钮
|
|
||||||
insert into sys_menu values('1031', '参数查询', '106', '1', '#', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1032', '参数新增', '106', '2', '#', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1033', '参数修改', '106', '3', '#', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1034', '参数删除', '106', '4', '#', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1035', '参数导出', '106', '5', '#', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 通知公告按钮
|
|
||||||
insert into sys_menu values('1036', '公告查询', '107', '1', '#', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1037', '公告新增', '107', '2', '#', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1038', '公告修改', '107', '3', '#', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1039', '公告删除', '107', '4', '#', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 操作日志按钮
|
|
||||||
insert into sys_menu values('1040', '操作查询', '500', '1', '#', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1041', '操作删除', '500', '2', '#', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1042', '日志导出', '500', '4', '#', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 登录日志按钮
|
|
||||||
insert into sys_menu values('1043', '登录查询', '501', '1', '#', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1044', '登录删除', '501', '2', '#', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1045', '日志导出', '501', '3', '#', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 在线用户按钮
|
|
||||||
insert into sys_menu values('1046', '在线查询', '109', '1', '#', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1047', '批量强退', '109', '2', '#', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1048', '单条强退', '109', '3', '#', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 定时任务按钮
|
|
||||||
insert into sys_menu values('1049', '任务查询', '110', '1', '#', '', 1, 0, 'F', '0', '0', 'monitor:job:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1050', '任务新增', '110', '2', '#', '', 1, 0, 'F', '0', '0', 'monitor:job:add', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1051', '任务修改', '110', '3', '#', '', 1, 0, 'F', '0', '0', 'monitor:job:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1052', '任务删除', '110', '4', '#', '', 1, 0, 'F', '0', '0', 'monitor:job:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1053', '状态修改', '110', '5', '#', '', 1, 0, 'F', '0', '0', 'monitor:job:changeStatus', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1054', '任务导出', '110', '7', '#', '', 1, 0, 'F', '0', '0', 'monitor:job:export', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
-- 代码生成按钮
|
|
||||||
insert into sys_menu values('1055', '生成查询', '115', '1', '#', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1056', '生成修改', '115', '2', '#', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1057', '生成删除', '115', '3', '#', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1058', '导入代码', '115', '2', '#', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1059', '预览代码', '115', '4', '#', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_menu values('1060', '生成代码', '115', '5', '#', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 'admin', sysdate(), '', null, '');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 6、用户和角色关联表 用户N-1角色
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_user_role;
|
|
||||||
create table sys_user_role (
|
|
||||||
user_id bigint(20) not null comment '用户ID',
|
|
||||||
role_id bigint(20) not null comment '角色ID',
|
|
||||||
primary key(user_id, role_id)
|
|
||||||
) engine=innodb comment = '用户和角色关联表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-用户和角色关联表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_user_role values ('1', '1');
|
|
||||||
insert into sys_user_role values ('2', '2');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 7、角色和菜单关联表 角色1-N菜单
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_role_menu;
|
|
||||||
create table sys_role_menu (
|
|
||||||
role_id bigint(20) not null comment '角色ID',
|
|
||||||
menu_id bigint(20) not null comment '菜单ID',
|
|
||||||
primary key(role_id, menu_id)
|
|
||||||
) engine=innodb comment = '角色和菜单关联表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-角色和菜单关联表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_role_menu values ('2', '1');
|
|
||||||
insert into sys_role_menu values ('2', '2');
|
|
||||||
insert into sys_role_menu values ('2', '3');
|
|
||||||
insert into sys_role_menu values ('2', '4');
|
|
||||||
insert into sys_role_menu values ('2', '100');
|
|
||||||
insert into sys_role_menu values ('2', '101');
|
|
||||||
insert into sys_role_menu values ('2', '102');
|
|
||||||
insert into sys_role_menu values ('2', '103');
|
|
||||||
insert into sys_role_menu values ('2', '104');
|
|
||||||
insert into sys_role_menu values ('2', '105');
|
|
||||||
insert into sys_role_menu values ('2', '106');
|
|
||||||
insert into sys_role_menu values ('2', '107');
|
|
||||||
insert into sys_role_menu values ('2', '108');
|
|
||||||
insert into sys_role_menu values ('2', '109');
|
|
||||||
insert into sys_role_menu values ('2', '110');
|
|
||||||
insert into sys_role_menu values ('2', '111');
|
|
||||||
insert into sys_role_menu values ('2', '112');
|
|
||||||
insert into sys_role_menu values ('2', '113');
|
|
||||||
insert into sys_role_menu values ('2', '114');
|
|
||||||
insert into sys_role_menu values ('2', '115');
|
|
||||||
insert into sys_role_menu values ('2', '116');
|
|
||||||
insert into sys_role_menu values ('2', '500');
|
|
||||||
insert into sys_role_menu values ('2', '501');
|
|
||||||
insert into sys_role_menu values ('2', '1000');
|
|
||||||
insert into sys_role_menu values ('2', '1001');
|
|
||||||
insert into sys_role_menu values ('2', '1002');
|
|
||||||
insert into sys_role_menu values ('2', '1003');
|
|
||||||
insert into sys_role_menu values ('2', '1004');
|
|
||||||
insert into sys_role_menu values ('2', '1005');
|
|
||||||
insert into sys_role_menu values ('2', '1006');
|
|
||||||
insert into sys_role_menu values ('2', '1007');
|
|
||||||
insert into sys_role_menu values ('2', '1008');
|
|
||||||
insert into sys_role_menu values ('2', '1009');
|
|
||||||
insert into sys_role_menu values ('2', '1010');
|
|
||||||
insert into sys_role_menu values ('2', '1011');
|
|
||||||
insert into sys_role_menu values ('2', '1012');
|
|
||||||
insert into sys_role_menu values ('2', '1013');
|
|
||||||
insert into sys_role_menu values ('2', '1014');
|
|
||||||
insert into sys_role_menu values ('2', '1015');
|
|
||||||
insert into sys_role_menu values ('2', '1016');
|
|
||||||
insert into sys_role_menu values ('2', '1017');
|
|
||||||
insert into sys_role_menu values ('2', '1018');
|
|
||||||
insert into sys_role_menu values ('2', '1019');
|
|
||||||
insert into sys_role_menu values ('2', '1020');
|
|
||||||
insert into sys_role_menu values ('2', '1021');
|
|
||||||
insert into sys_role_menu values ('2', '1022');
|
|
||||||
insert into sys_role_menu values ('2', '1023');
|
|
||||||
insert into sys_role_menu values ('2', '1024');
|
|
||||||
insert into sys_role_menu values ('2', '1025');
|
|
||||||
insert into sys_role_menu values ('2', '1026');
|
|
||||||
insert into sys_role_menu values ('2', '1027');
|
|
||||||
insert into sys_role_menu values ('2', '1028');
|
|
||||||
insert into sys_role_menu values ('2', '1029');
|
|
||||||
insert into sys_role_menu values ('2', '1030');
|
|
||||||
insert into sys_role_menu values ('2', '1031');
|
|
||||||
insert into sys_role_menu values ('2', '1032');
|
|
||||||
insert into sys_role_menu values ('2', '1033');
|
|
||||||
insert into sys_role_menu values ('2', '1034');
|
|
||||||
insert into sys_role_menu values ('2', '1035');
|
|
||||||
insert into sys_role_menu values ('2', '1036');
|
|
||||||
insert into sys_role_menu values ('2', '1037');
|
|
||||||
insert into sys_role_menu values ('2', '1038');
|
|
||||||
insert into sys_role_menu values ('2', '1039');
|
|
||||||
insert into sys_role_menu values ('2', '1040');
|
|
||||||
insert into sys_role_menu values ('2', '1041');
|
|
||||||
insert into sys_role_menu values ('2', '1042');
|
|
||||||
insert into sys_role_menu values ('2', '1043');
|
|
||||||
insert into sys_role_menu values ('2', '1044');
|
|
||||||
insert into sys_role_menu values ('2', '1045');
|
|
||||||
insert into sys_role_menu values ('2', '1046');
|
|
||||||
insert into sys_role_menu values ('2', '1047');
|
|
||||||
insert into sys_role_menu values ('2', '1048');
|
|
||||||
insert into sys_role_menu values ('2', '1049');
|
|
||||||
insert into sys_role_menu values ('2', '1050');
|
|
||||||
insert into sys_role_menu values ('2', '1051');
|
|
||||||
insert into sys_role_menu values ('2', '1052');
|
|
||||||
insert into sys_role_menu values ('2', '1053');
|
|
||||||
insert into sys_role_menu values ('2', '1054');
|
|
||||||
insert into sys_role_menu values ('2', '1055');
|
|
||||||
insert into sys_role_menu values ('2', '1056');
|
|
||||||
insert into sys_role_menu values ('2', '1057');
|
|
||||||
insert into sys_role_menu values ('2', '1058');
|
|
||||||
insert into sys_role_menu values ('2', '1059');
|
|
||||||
insert into sys_role_menu values ('2', '1060');
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 8、角色和部门关联表 角色1-N部门
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_role_dept;
|
|
||||||
create table sys_role_dept (
|
|
||||||
role_id bigint(20) not null comment '角色ID',
|
|
||||||
dept_id bigint(20) not null comment '部门ID',
|
|
||||||
primary key(role_id, dept_id)
|
|
||||||
) engine=innodb comment = '角色和部门关联表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-角色和部门关联表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_role_dept values ('2', '100');
|
|
||||||
insert into sys_role_dept values ('2', '101');
|
|
||||||
insert into sys_role_dept values ('2', '105');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 9、用户与岗位关联表 用户1-N岗位
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_user_post;
|
|
||||||
create table sys_user_post
|
|
||||||
(
|
|
||||||
user_id bigint(20) not null comment '用户ID',
|
|
||||||
post_id bigint(20) not null comment '岗位ID',
|
|
||||||
primary key (user_id, post_id)
|
|
||||||
) engine=innodb comment = '用户与岗位关联表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-用户与岗位关联表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_user_post values ('1', '1');
|
|
||||||
insert into sys_user_post values ('2', '2');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 10、操作日志记录
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_oper_log;
|
|
||||||
create table sys_oper_log (
|
|
||||||
oper_id bigint(20) not null auto_increment comment '日志主键',
|
|
||||||
title varchar(50) default '' comment '模块标题',
|
|
||||||
business_type int(2) default 0 comment '业务类型(0其它 1新增 2修改 3删除)',
|
|
||||||
method varchar(100) default '' comment '方法名称',
|
|
||||||
request_method varchar(10) default '' comment '请求方式',
|
|
||||||
operator_type int(1) default 0 comment '操作类别(0其它 1后台用户 2手机端用户)',
|
|
||||||
oper_name varchar(50) default '' comment '操作人员',
|
|
||||||
dept_name varchar(50) default '' comment '部门名称',
|
|
||||||
oper_url varchar(255) default '' comment '请求URL',
|
|
||||||
oper_ip varchar(128) default '' comment '主机地址',
|
|
||||||
oper_location varchar(255) default '' comment '操作地点',
|
|
||||||
oper_param varchar(2000) default '' comment '请求参数',
|
|
||||||
json_result varchar(2000) default '' comment '返回参数',
|
|
||||||
status int(1) default 0 comment '操作状态(0正常 1异常)',
|
|
||||||
error_msg varchar(2000) default '' comment '错误消息',
|
|
||||||
oper_time datetime comment '操作时间',
|
|
||||||
primary key (oper_id)
|
|
||||||
) engine=innodb auto_increment=100 comment = '操作日志记录';
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 11、字典类型表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_dict_type;
|
|
||||||
create table sys_dict_type
|
|
||||||
(
|
|
||||||
dict_id bigint(20) not null auto_increment comment '字典主键',
|
|
||||||
dict_name varchar(100) default '' comment '字典名称',
|
|
||||||
dict_type varchar(100) default '' comment '字典类型',
|
|
||||||
status char(1) default '0' comment '状态(0正常 1停用)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (dict_id),
|
|
||||||
unique (dict_type)
|
|
||||||
) engine=innodb auto_increment=100 comment = '字典类型表';
|
|
||||||
|
|
||||||
insert into sys_dict_type values(1, '用户性别', 'sys_user_sex', '0', 'admin', sysdate(), '', null, '用户性别列表');
|
|
||||||
insert into sys_dict_type values(2, '菜单状态', 'sys_show_hide', '0', 'admin', sysdate(), '', null, '菜单状态列表');
|
|
||||||
insert into sys_dict_type values(3, '系统开关', 'sys_normal_disable', '0', 'admin', sysdate(), '', null, '系统开关列表');
|
|
||||||
insert into sys_dict_type values(4, '任务状态', 'sys_job_status', '0', 'admin', sysdate(), '', null, '任务状态列表');
|
|
||||||
insert into sys_dict_type values(5, '任务分组', 'sys_job_group', '0', 'admin', sysdate(), '', null, '任务分组列表');
|
|
||||||
insert into sys_dict_type values(6, '系统是否', 'sys_yes_no', '0', 'admin', sysdate(), '', null, '系统是否列表');
|
|
||||||
insert into sys_dict_type values(7, '通知类型', 'sys_notice_type', '0', 'admin', sysdate(), '', null, '通知类型列表');
|
|
||||||
insert into sys_dict_type values(8, '通知状态', 'sys_notice_status', '0', 'admin', sysdate(), '', null, '通知状态列表');
|
|
||||||
insert into sys_dict_type values(9, '操作类型', 'sys_oper_type', '0', 'admin', sysdate(), '', null, '操作类型列表');
|
|
||||||
insert into sys_dict_type values(10, '系统状态', 'sys_common_status', '0', 'admin', sysdate(), '', null, '登录状态列表');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 12、字典数据表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_dict_data;
|
|
||||||
create table sys_dict_data
|
|
||||||
(
|
|
||||||
dict_code bigint(20) not null auto_increment comment '字典编码',
|
|
||||||
dict_sort int(4) default 0 comment '字典排序',
|
|
||||||
dict_label varchar(100) default '' comment '字典标签',
|
|
||||||
dict_value varchar(100) default '' comment '字典键值',
|
|
||||||
dict_type varchar(100) default '' comment '字典类型',
|
|
||||||
css_class varchar(100) default null comment '样式属性(其他样式扩展)',
|
|
||||||
list_class varchar(100) default null comment '表格回显样式',
|
|
||||||
is_default char(1) default 'N' comment '是否默认(Y是 N否)',
|
|
||||||
status char(1) default '0' comment '状态(0正常 1停用)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (dict_code)
|
|
||||||
) engine=innodb auto_increment=100 comment = '字典数据表';
|
|
||||||
|
|
||||||
insert into sys_dict_data values(1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', sysdate(), '', null, '性别男');
|
|
||||||
insert into sys_dict_data values(2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', sysdate(), '', null, '性别女');
|
|
||||||
insert into sys_dict_data values(3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', sysdate(), '', null, '性别未知');
|
|
||||||
insert into sys_dict_data values(4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', sysdate(), '', null, '显示菜单');
|
|
||||||
insert into sys_dict_data values(5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '隐藏菜单');
|
|
||||||
insert into sys_dict_data values(6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', sysdate(), '', null, '正常状态');
|
|
||||||
insert into sys_dict_data values(7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '停用状态');
|
|
||||||
insert into sys_dict_data values(8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', sysdate(), '', null, '正常状态');
|
|
||||||
insert into sys_dict_data values(9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '停用状态');
|
|
||||||
insert into sys_dict_data values(10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', sysdate(), '', null, '默认分组');
|
|
||||||
insert into sys_dict_data values(11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', sysdate(), '', null, '系统分组');
|
|
||||||
insert into sys_dict_data values(12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', sysdate(), '', null, '系统默认是');
|
|
||||||
insert into sys_dict_data values(13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '系统默认否');
|
|
||||||
insert into sys_dict_data values(14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', sysdate(), '', null, '通知');
|
|
||||||
insert into sys_dict_data values(15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', sysdate(), '', null, '公告');
|
|
||||||
insert into sys_dict_data values(16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', sysdate(), '', null, '正常状态');
|
|
||||||
insert into sys_dict_data values(17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '关闭状态');
|
|
||||||
insert into sys_dict_data values(18, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', sysdate(), '', null, '新增操作');
|
|
||||||
insert into sys_dict_data values(19, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', sysdate(), '', null, '修改操作');
|
|
||||||
insert into sys_dict_data values(20, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '删除操作');
|
|
||||||
insert into sys_dict_data values(21, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', sysdate(), '', null, '授权操作');
|
|
||||||
insert into sys_dict_data values(22, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', sysdate(), '', null, '导出操作');
|
|
||||||
insert into sys_dict_data values(23, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', sysdate(), '', null, '导入操作');
|
|
||||||
insert into sys_dict_data values(24, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '强退操作');
|
|
||||||
insert into sys_dict_data values(25, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', sysdate(), '', null, '生成操作');
|
|
||||||
insert into sys_dict_data values(26, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '清空操作');
|
|
||||||
insert into sys_dict_data values(27, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', sysdate(), '', null, '正常状态');
|
|
||||||
insert into sys_dict_data values(28, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', sysdate(), '', null, '停用状态');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 13、参数配置表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_config;
|
|
||||||
create table sys_config (
|
|
||||||
config_id int(5) not null auto_increment comment '参数主键',
|
|
||||||
config_name varchar(100) default '' comment '参数名称',
|
|
||||||
config_key varchar(100) default '' comment '参数键名',
|
|
||||||
config_value varchar(500) default '' comment '参数键值',
|
|
||||||
config_type char(1) default 'N' comment '系统内置(Y是 N否)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (config_id)
|
|
||||||
) engine=innodb auto_increment=100 comment = '参数配置表';
|
|
||||||
|
|
||||||
insert into sys_config values(1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', sysdate(), '', null, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow' );
|
|
||||||
insert into sys_config values(2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', sysdate(), '', null, '初始化密码 123456' );
|
|
||||||
insert into sys_config values(3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', sysdate(), '', null, '深色主题theme-dark,浅色主题theme-light' );
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 14、系统访问记录
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_logininfor;
|
|
||||||
create table sys_logininfor (
|
|
||||||
info_id bigint(20) not null auto_increment comment '访问ID',
|
|
||||||
user_name varchar(50) default '' comment '用户账号',
|
|
||||||
ipaddr varchar(128) default '' comment '登录IP地址',
|
|
||||||
login_location varchar(255) default '' comment '登录地点',
|
|
||||||
browser varchar(50) default '' comment '浏览器类型',
|
|
||||||
os varchar(50) default '' comment '操作系统',
|
|
||||||
status char(1) default '0' comment '登录状态(0成功 1失败)',
|
|
||||||
msg varchar(255) default '' comment '提示消息',
|
|
||||||
login_time datetime comment '访问时间',
|
|
||||||
primary key (info_id)
|
|
||||||
) engine=innodb auto_increment=100 comment = '系统访问记录';
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 15、定时任务调度表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_job;
|
|
||||||
create table sys_job (
|
|
||||||
job_id bigint(20) not null auto_increment comment '任务ID',
|
|
||||||
job_name varchar(64) default '' comment '任务名称',
|
|
||||||
job_group varchar(64) default 'DEFAULT' comment '任务组名',
|
|
||||||
invoke_target varchar(500) not null comment '调用目标字符串',
|
|
||||||
cron_expression varchar(255) default '' comment 'cron执行表达式',
|
|
||||||
misfire_policy varchar(20) default '3' comment '计划执行错误策略(1立即执行 2执行一次 3放弃执行)',
|
|
||||||
concurrent char(1) default '1' comment '是否并发执行(0允许 1禁止)',
|
|
||||||
status char(1) default '0' comment '状态(0正常 1暂停)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default '' comment '备注信息',
|
|
||||||
primary key (job_id, job_name, job_group)
|
|
||||||
) engine=innodb auto_increment=100 comment = '定时任务调度表';
|
|
||||||
|
|
||||||
insert into sys_job values(1, '系统默认(无参)', 'DEFAULT', 'ryTask.ryNoParams', '0/10 * * * * ?', '3', '1', '1', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_job values(2, '系统默认(有参)', 'DEFAULT', 'ryTask.ryParams(\'ry\')', '0/15 * * * * ?', '3', '1', '1', 'admin', sysdate(), '', null, '');
|
|
||||||
insert into sys_job values(3, '系统默认(多参)', 'DEFAULT', 'ryTask.ryMultipleParams(\'ry\', true, 2000L, 316.50D, 100)', '0/20 * * * * ?', '3', '1', '1', 'admin', sysdate(), '', null, '');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 16、定时任务调度日志表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_job_log;
|
|
||||||
create table sys_job_log (
|
|
||||||
job_log_id bigint(20) not null auto_increment comment '任务日志ID',
|
|
||||||
job_name varchar(64) not null comment '任务名称',
|
|
||||||
job_group varchar(64) not null comment '任务组名',
|
|
||||||
invoke_target varchar(500) not null comment '调用目标字符串',
|
|
||||||
job_message varchar(500) comment '日志信息',
|
|
||||||
status char(1) default '0' comment '执行状态(0正常 1失败)',
|
|
||||||
exception_info varchar(2000) default '' comment '异常信息',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
primary key (job_log_id)
|
|
||||||
) engine=innodb comment = '定时任务调度日志表';
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 17、通知公告表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists sys_notice;
|
|
||||||
create table sys_notice (
|
|
||||||
notice_id int(4) not null auto_increment comment '公告ID',
|
|
||||||
notice_title varchar(50) not null comment '公告标题',
|
|
||||||
notice_type char(1) not null comment '公告类型(1通知 2公告)',
|
|
||||||
notice_content longblob default null comment '公告内容',
|
|
||||||
status char(1) default '0' comment '公告状态(0正常 1关闭)',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(255) default null comment '备注',
|
|
||||||
primary key (notice_id)
|
|
||||||
) engine=innodb auto_increment=10 comment = '通知公告表';
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 初始化-公告信息表数据
|
|
||||||
-- ----------------------------
|
|
||||||
insert into sys_notice values('1', '温馨提醒:2018-07-01 若依新版本发布啦', '2', '新版本内容', '0', 'admin', sysdate(), '', null, '管理员');
|
|
||||||
insert into sys_notice values('2', '维护通知:2018-07-01 若依系统凌晨维护', '1', '维护内容', '0', 'admin', sysdate(), '', null, '管理员');
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 18、代码生成业务表
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists gen_table;
|
|
||||||
create table gen_table (
|
|
||||||
table_id bigint(20) not null auto_increment comment '编号',
|
|
||||||
table_name varchar(200) default '' comment '表名称',
|
|
||||||
table_comment varchar(500) default '' comment '表描述',
|
|
||||||
sub_table_name varchar(64) default null comment '关联子表的表名',
|
|
||||||
sub_table_fk_name varchar(64) default null comment '子表关联的外键名',
|
|
||||||
class_name varchar(100) default '' comment '实体类名称',
|
|
||||||
tpl_category varchar(200) default 'crud' comment '使用的模板(crud单表操作 tree树表操作)',
|
|
||||||
package_name varchar(100) comment '生成包路径',
|
|
||||||
module_name varchar(30) comment '生成模块名',
|
|
||||||
business_name varchar(30) comment '生成业务名',
|
|
||||||
function_name varchar(50) comment '生成功能名',
|
|
||||||
function_author varchar(50) comment '生成功能作者',
|
|
||||||
gen_type char(1) default '0' comment '生成代码方式(0zip压缩包 1自定义路径)',
|
|
||||||
gen_path varchar(200) default '/' comment '生成路径(不填默认项目路径)',
|
|
||||||
options varchar(1000) comment '其它生成选项',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
remark varchar(500) default null comment '备注',
|
|
||||||
primary key (table_id)
|
|
||||||
) engine=innodb auto_increment=1 comment = '代码生成业务表';
|
|
||||||
|
|
||||||
|
|
||||||
-- ----------------------------
|
|
||||||
-- 19、代码生成业务表字段
|
|
||||||
-- ----------------------------
|
|
||||||
drop table if exists gen_table_column;
|
|
||||||
create table gen_table_column (
|
|
||||||
column_id bigint(20) not null auto_increment comment '编号',
|
|
||||||
table_id varchar(64) comment '归属表编号',
|
|
||||||
column_name varchar(200) comment '列名称',
|
|
||||||
column_comment varchar(500) comment '列描述',
|
|
||||||
column_type varchar(100) comment '列类型',
|
|
||||||
java_type varchar(500) comment 'JAVA类型',
|
|
||||||
java_field varchar(200) comment 'JAVA字段名',
|
|
||||||
is_pk char(1) comment '是否主键(1是)',
|
|
||||||
is_increment char(1) comment '是否自增(1是)',
|
|
||||||
is_required char(1) comment '是否必填(1是)',
|
|
||||||
is_insert char(1) comment '是否为插入字段(1是)',
|
|
||||||
is_edit char(1) comment '是否编辑字段(1是)',
|
|
||||||
is_list char(1) comment '是否列表字段(1是)',
|
|
||||||
is_query char(1) comment '是否查询字段(1是)',
|
|
||||||
query_type varchar(200) default 'EQ' comment '查询方式(等于、不等于、大于、小于、范围)',
|
|
||||||
html_type varchar(200) comment '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
|
|
||||||
dict_type varchar(200) default '' comment '字典类型',
|
|
||||||
sort int comment '排序',
|
|
||||||
create_by varchar(64) default '' comment '创建者',
|
|
||||||
create_time datetime comment '创建时间',
|
|
||||||
update_by varchar(64) default '' comment '更新者',
|
|
||||||
update_time datetime comment '更新时间',
|
|
||||||
primary key (column_id)
|
|
||||||
) engine=innodb auto_increment=1 comment = '代码生成业务表字段';
|
|
||||||
1305
spring-boot/sql/wumei-smart.sql
Normal file
1305
spring-boot/sql/wumei-smart.sql
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user