2022-04-29 09:32:34 +08:00
|
|
|
package com.ghy.message.domain;
|
|
|
|
|
|
|
|
|
|
import com.ghy.common.core.domain.BaseEntity;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author clunt
|
|
|
|
|
* 极光推送群组聊天室用户
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
public class JimUser extends BaseEntity {
|
|
|
|
|
|
2022-08-04 16:30:43 +08:00
|
|
|
// 自增组件
|
|
|
|
|
private Long jimUserId;
|
|
|
|
|
|
|
|
|
|
// D101W7 系统编码
|
|
|
|
|
private String sysUser;
|
|
|
|
|
|
|
|
|
|
private String userName;
|
|
|
|
|
|
|
|
|
|
private String password;
|
|
|
|
|
|
|
|
|
|
private String appKey;
|
|
|
|
|
|
2022-04-29 09:32:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|