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