ApiDataServiceInfo.java
849 Bytes
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
34
35
36
37
38
package com.lhcredit.project.business.apiDataServiceInfo.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 数据服务内容表 api_data_service_info
*
* @author lhcredit
* @date 2025-05-06
*/
@Data
@ApiModel(value = "数据服务内容")
public class ApiDataServiceInfo {
private static final long serialVersionUID=1L;
/** */
@ApiModelProperty(value = "")
private Integer id;
/** */
@ApiModelProperty(value = "")
private Integer dataId;
/** */
@ApiModelProperty(value = "")
private String title;
/** */
@ApiModelProperty(value = "")
private String content;
/** */
@ApiModelProperty(value = "")
private String content1;
/** */
@ApiModelProperty(value = "")
private String content2;
}