InterviewQuestionAdd.java 205 字节
Newer Older
1 2 3 4 5
package com.kwan.springbootkwan.entity.query;

import lombok.Data;

@Data
6 7
public class InterviewQuestionAdd {

8 9
    private String question;
    private Integer questionType;
10
    private Integer addType;
11
}