guyue
7 天以前 a7c9ed23a07e22b525942d989eb8a159f2a4f130
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.linghu.model.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ExportStaticsDTO {
    @ApiModelProperty("关键词id")
    private Integer keywordId;
    @ApiModelProperty("提问词id")
    private  Integer questionId;
    @ApiModelProperty("是否首次 0-否 1- 是")
    private  Integer isFirst;
}