mirror of
https://github.com/PowerJob/PowerJob.git
synced 2025-07-17 00:00:04 +08:00
feat: extend UserInfo to prepare for WebHook alarm support
This commit is contained in:
parent
7b54dccdd4
commit
455d8b1e16
@ -153,6 +153,8 @@ CREATE TABLE `user_info` (
|
|||||||
`password` varchar(255) DEFAULT NULL,
|
`password` varchar(255) DEFAULT NULL,
|
||||||
`phone` varchar(255) DEFAULT NULL,
|
`phone` varchar(255) DEFAULT NULL,
|
||||||
`username` varchar(255) DEFAULT NULL,
|
`username` varchar(255) DEFAULT NULL,
|
||||||
|
`extra` varchar(255) DEFAULT NULL,
|
||||||
|
`web_hook` varchar(255) DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||||
|
|
||||||
|
@ -29,6 +29,11 @@ public class UserInfoDO {
|
|||||||
private String phone;
|
private String phone;
|
||||||
// 邮箱地址
|
// 邮箱地址
|
||||||
private String email;
|
private String email;
|
||||||
|
// webHook
|
||||||
|
private String webHook;
|
||||||
|
|
||||||
|
// 扩展字段
|
||||||
|
private String extra;
|
||||||
|
|
||||||
private Date gmtCreate;
|
private Date gmtCreate;
|
||||||
private Date gmtModified;
|
private Date gmtModified;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user