xuhy
2023-02-22 6e2ad8bbee4a338c76b2b112a0a880883b8d8eb3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.supersavedriving.driver.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
* 系统公告详情
* @author pzb
* @Date 2023/2/13 11:44
*/
@Data
@ApiModel
public class SystemBulletinInfo {
    @ApiModelProperty("id")
    private Long id;
    @ApiModelProperty("H5")
    private String content;
}