TContractorTrainCourse.java 4.38 KB
Newer Older
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;

/**
 * 承包商及访客培训对象 t_contractor_train_course
10
 *
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
 * @author zehong
 * @date 2022-12-27
 */
public class TContractorTrainCourse extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 培训id */
    private Long contractorCourseId;

    /** 培训名称 */
    @Excel(name = "培训名称")
    private String courseName;

    /** 培训内容 */
    @Excel(name = "培训内容")
    private String courseConent;

    /** 培训附件 */
    @Excel(name = "培训附件")
    private String enclosure;

    /** 培训视频 */
    @Excel(name = "培训视频")
    private String video;

    /** 答题合格数 */
    @Excel(name = "答题合格数")
    private Integer qualifiedNum;

    /** 录入题数量 */
    @Excel(name = "录入题数量")
    private Integer topicNum;

    /** 创建人 */
    @Excel(name = "创建人")
    private String createUser;

    /** 是否删除(0正常,1删除) */
    @Excel(name = "是否删除(0正常,1删除)")
    private String isDel;

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    /** 多选题分数*/
    private Integer multipleChoiceScore;

    /**单选题分数*/
    private Integer singleChoiceScore;

    /**判断题分数*/
    private Integer judgmentScore;

    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public Integer getMultipleChoiceScore() {
        return multipleChoiceScore;
    }

    public void setMultipleChoiceScore(Integer multipleChoiceScore) {
        this.multipleChoiceScore = multipleChoiceScore;
    }

    public Integer getSingleChoiceScore() {
        return singleChoiceScore;
    }

    public void setSingleChoiceScore(Integer singleChoiceScore) {
        this.singleChoiceScore = singleChoiceScore;
    }

    public Integer getJudgmentScore() {
        return judgmentScore;
    }

    public void setJudgmentScore(Integer judgmentScore) {
        this.judgmentScore = judgmentScore;
    }

    public void setContractorCourseId(Long contractorCourseId)
91 92 93 94
    {
        this.contractorCourseId = contractorCourseId;
    }

95
    public Long getContractorCourseId()
96 97 98
    {
        return contractorCourseId;
    }
99
    public void setCourseName(String courseName)
100 101 102 103
    {
        this.courseName = courseName;
    }

104
    public String getCourseName()
105 106 107
    {
        return courseName;
    }
108
    public void setCourseConent(String courseConent)
109 110 111 112
    {
        this.courseConent = courseConent;
    }

113
    public String getCourseConent()
114 115 116
    {
        return courseConent;
    }
117
    public void setEnclosure(String enclosure)
118 119 120 121
    {
        this.enclosure = enclosure;
    }

122
    public String getEnclosure()
123 124 125
    {
        return enclosure;
    }
126
    public void setVideo(String video)
127 128 129 130
    {
        this.video = video;
    }

131
    public String getVideo()
132 133 134
    {
        return video;
    }
135
    public void setQualifiedNum(Integer qualifiedNum)
136 137 138 139
    {
        this.qualifiedNum = qualifiedNum;
    }

140
    public Integer getQualifiedNum()
141 142 143
    {
        return qualifiedNum;
    }
144
    public void setTopicNum(Integer topicNum)
145 146 147 148
    {
        this.topicNum = topicNum;
    }

149
    public Integer getTopicNum()
150 151 152
    {
        return topicNum;
    }
153
    public void setCreateUser(String createUser)
154 155 156 157
    {
        this.createUser = createUser;
    }

158
    public String getCreateUser()
159 160 161
    {
        return createUser;
    }
162
    public void setIsDel(String isDel)
163 164 165 166
    {
        this.isDel = isDel;
    }

167
    public String getIsDel()
168 169 170 171 172 173
    {
        return isDel;
    }

    @Override
    public String toString() {
174 175 176 177 178 179 180 181 182 183 184 185 186 187
        return "TContractorTrainCourse{" +
                "contractorCourseId=" + contractorCourseId +
                ", courseName='" + courseName + '\'' +
                ", courseConent='" + courseConent + '\'' +
                ", enclosure='" + enclosure + '\'' +
                ", video='" + video + '\'' +
                ", qualifiedNum=" + qualifiedNum +
                ", topicNum=" + topicNum +
                ", createUser='" + createUser + '\'' +
                ", isDel='" + isDel + '\'' +
                ", multipleChoiceScore=" + multipleChoiceScore +
                ", singleChoiceScore=" + singleChoiceScore +
                ", judgmentScore=" + judgmentScore +
                '}';
188 189
    }
}