1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| 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;
|
|
| }
|
|