feat:REQ-1419 增加用户注册IM接口
This commit is contained in:
parent
b302ff3517
commit
43a78491da
@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 机器人管理API
|
||||
* IM账户管理API
|
||||
*
|
||||
* @author zuoqinbo
|
||||
* @version V1.0
|
||||
|
||||
@ -18,7 +18,7 @@ public class BatchAccountReq {
|
||||
/**
|
||||
* 消息应用端
|
||||
* 工人端、企业端、服务器
|
||||
* WORKER、ENTERPRISE、SYSTEM
|
||||
* CM、CMP、SYSTEM
|
||||
*/
|
||||
@NotNull(message = "消息应用端不能为空")
|
||||
private String appType;
|
||||
|
||||
@ -18,7 +18,7 @@ public class UserAccountReq {
|
||||
/**
|
||||
* 消息应用端
|
||||
* 工人端、企业端、服务器
|
||||
* WORKER、ENTERPRISE、SYSTEM
|
||||
* CM、CMP、SYSTEM
|
||||
*/
|
||||
@NotNull(message = "消息应用端不能为空")
|
||||
private String appType;
|
||||
|
||||
@ -45,7 +45,7 @@ CREATE TABLE IF NOT EXISTS im_account_register
|
||||
channel_provider varchar(20) not null comment 'IM服务提供商',
|
||||
im_account varchar(100) default '' not null comment '已生成IM账号',
|
||||
account_type varchar(20) default '' not null comment '账户类型:机器人、普通用户',
|
||||
app_type varchar(20) default '' not null comment 'App终端类型:WORKER、ENTERPRISE、SYSTEM',
|
||||
app_type varchar(20) default '' not null comment 'App终端类型:CM、CMP、SYSTEM',
|
||||
token varchar(100) default '' not null comment '网易云信静态token',
|
||||
is_delete tinyint default 0 not null comment '未删除0,删除id',
|
||||
create_at datetime default CURRENT_TIMESTAMP not null comment '创建时间',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user