peng
2025-09-19 b7df7af3289cabe6cf8a23f314d803fc144a913e
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;
 
 
}