帮我写一下基于SpringBoot的气象服务用户管理系统中所有具体的字段表
时间: 2024-05-29 22:10:34 浏览: 82
基于SpringBoot+Vue的气象信息智慧监测管理系统源码+数据库文件(毕业设计).zip
5星 · 资源好评率100%
1. User table
- id: 用户ID
- username: 用户名
- password: 密码
- email: 邮箱
- phone: 电话号码
- enabled: 是否启用
2. Role table
- id: 角色ID
- name: 角色名称
3. User_Role table
- user_id: 用户ID
- role_id: 角色ID
4. Station table
- id: 站点ID
- name: 站点名称
- location: 站点位置
- latitude: 纬度
- longitude: 经度
5. Sensor table
- id: 传感器ID
- name: 传感器名称
- type: 传感器类型
- unit: 测量单位
- station_id: 站点ID
6. Data table
- id: 数据ID
- value: 数据值
- time: 数据时间
- sensor_id: 传感器ID
7. Alert table
- id: 警报ID
- type: 警报类型
- level: 警报级别
- description: 警报描述
- time: 警报时间
- sensor_id: 传感器ID
8. Subscription table
- id: 订阅ID
- user_id: 用户ID
- station_id: 站点ID
阅读全文