guyue
5 天以前 8f5cb469b825cce61734c84fd633f0dfc3000ee6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.linghu.model.dto;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.linghu.model.entity.Keyword;
 
@EqualsAndHashCode(callSuper = true)
@Data
public class KeywordDto extends Keyword {
    /**
     * 提问词列表,用换行符分隔
     */
    private String questions;
}