TTrainCourseBank.java 1.92 KB
Newer Older
吴卿华's avatar
吴卿华 committed
1 2 3 4 5 6 7 8 9
package com.zehong.system.domain;

import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

/**
 * bank对象 t_train_course_bank
吴卿华's avatar
吴卿华 committed
10
 *
吴卿华's avatar
吴卿华 committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * @author zehong
 * @date 2022-12-14
 */
public class TTrainCourseBank extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 主键id */
    private Long bankId;

    /** 所属部门 */
    private Long deptId;

    /** 题库名称 */
    @Excel(name = "题库名称")
    private String bankName;

吴卿华's avatar
吴卿华 committed
28 29 30
    /**下级题目数量*/
    private String numberQuestions;

吴卿华's avatar
吴卿华 committed
31 32 33
    /** 是否删除 0未删除  1删除 */
    private Integer isDel;

吴卿华's avatar
吴卿华 committed
34 35 36 37 38 39 40 41 42 43 44 45 46
    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public String getNumberQuestions() {
        return numberQuestions;
    }

    public void setNumberQuestions(String numberQuestions) {
        this.numberQuestions = numberQuestions;
    }

    public void setBankId(Long bankId)
吴卿华's avatar
吴卿华 committed
47 48 49 50
    {
        this.bankId = bankId;
    }

吴卿华's avatar
吴卿华 committed
51
    public Long getBankId()
吴卿华's avatar
吴卿华 committed
52 53 54
    {
        return bankId;
    }
吴卿华's avatar
吴卿华 committed
55
    public void setDeptId(Long deptId)
吴卿华's avatar
吴卿华 committed
56 57 58 59
    {
        this.deptId = deptId;
    }

吴卿华's avatar
吴卿华 committed
60
    public Long getDeptId()
吴卿华's avatar
吴卿华 committed
61 62 63
    {
        return deptId;
    }
吴卿华's avatar
吴卿华 committed
64
    public void setBankName(String bankName)
吴卿华's avatar
吴卿华 committed
65 66 67 68
    {
        this.bankName = bankName;
    }

吴卿华's avatar
吴卿华 committed
69
    public String getBankName()
吴卿华's avatar
吴卿华 committed
70 71 72
    {
        return bankName;
    }
吴卿华's avatar
吴卿华 committed
73
    public void setIsDel(Integer isDel)
吴卿华's avatar
吴卿华 committed
74 75 76 77
    {
        this.isDel = isDel;
    }

吴卿华's avatar
吴卿华 committed
78
    public Integer getIsDel()
吴卿华's avatar
吴卿华 committed
79 80 81 82 83 84
    {
        return isDel;
    }

    @Override
    public String toString() {
吴卿华's avatar
吴卿华 committed
85 86 87 88 89 90 91
        return "TTrainCourseBank{" +
                "bankId=" + bankId +
                ", deptId=" + deptId +
                ", bankName='" + bankName + '\'' +
                ", numberQuestions='" + numberQuestions + '\'' +
                ", isDel=" + isDel +
                '}';
吴卿华's avatar
吴卿华 committed
92 93
    }
}