linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}