1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| package com.dsh.account.feignclient.other.model;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * <p>
| * 图片配置
| * </p>
| *
| * @author administrator
| * @since 2023-06-13
| */
| @Data
| public class TImgConfig {
|
| private static final long serialVersionUID = 1L;
|
| /**
| * 主键
| */
| private Integer id;
| /**
| * 位置(1=无学员,2=成为会员,3=我的券包,4=线上商城,5=本周福利,6=今日免费)
| */
| private Integer position;
| /**
| * 图片配置JSON
| */
| private String content;
|
| }
|
|