package com.ots.project.exam.domain;
|
|
import com.ots.framework.web.domain.BaseEntity;
|
import lombok.Getter;
|
import lombok.Setter;
|
/**
|
* 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式对象 t_exam_paper_question
|
*
|
* @author ots
|
* @date 2020-03-03
|
*/
|
@Getter
|
@Setter
|
public class TExamPaperQuestion extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** t_exam_paper的id */
|
private Long paperId;
|
|
/** 题目的编号 */
|
|
private Integer questionId;
|
|
/** 题目的永久编号 */
|
private String permanentId;
|
}
|