IM 相关配置提交
This commit is contained in:
@@ -97,6 +97,11 @@ public class Store extends BaseEntity {
|
||||
@ApiModelProperty(value = "腾讯云智服小程序唯一标识")
|
||||
private String yzfMpSign;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "udesk IM标识")
|
||||
private String merchantEuid;
|
||||
|
||||
|
||||
public Store(Member member) {
|
||||
this.memberId = member.getId();
|
||||
this.memberName = member.getUsername();
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
package cn.lili.modules.system.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* IM设置
|
||||
*
|
||||
* @author Bulbasaur
|
||||
* @since 2021/5/16 11:10 下午
|
||||
*/
|
||||
@Data
|
||||
public class ImSetting implements Serializable {
|
||||
|
||||
|
||||
@ApiModelProperty(value = "平台地址")
|
||||
private String httpUrl;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "平台ID")
|
||||
private Integer tenantId;
|
||||
|
||||
|
||||
}
|
||||
@@ -42,5 +42,7 @@ public enum SettingEnum {
|
||||
//支付宝支付设置
|
||||
ALIPAY_PAYMENT,
|
||||
//微信支付设置
|
||||
WECHAT_PAYMENT;
|
||||
WECHAT_PAYMENT,
|
||||
//IM 配置
|
||||
IM;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user