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

import lombok.Data;

@Data
6
public class InterviewQuestionAdd {
7
    private Integer addType;
8 9 10
    private String question;
    private Integer questionType;
}