Blame view

ProjectDO.java 3.65 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9
package com.subsidy.model;

import com.subsidy.util.BaseModel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;

涂亚平 committed
10 11
import java.math.BigDecimal;

涂亚平 committed
12 13
/**
 * <p>
涂亚平 committed
14
 * 
涂亚平 committed
15 16 17
 * </p>
 *
 * @author Tuyp
涂亚平 committed
18
 * @since 2025-01-07
涂亚平 committed
19 20 21 22 23 24 25 26 27 28 29
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("project")
public class ProjectDO extends BaseModel {

    private static final long serialVersionUID = 1L;

    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

涂亚平 committed
30 31 32 33
    private Long matchId;

    private Long teacherId;

涂亚平 committed
34 35
    private String projectTrack;

涂亚平 committed
36 37 38 39
    private Long collegeId;

    private String projectGroup;

涂亚平 committed
40
    /**
涂亚平 committed
41
     * 课程名称
涂亚平 committed
42
     */
涂亚平 committed
43
    private String courseName;
涂亚平 committed
44 45

    /**
涂亚平 committed
46 47 48 49 50
     * 课程英文名称
     */
    private String courseNameEn;

    /**
涂亚平 committed
51
     * 课程编码
涂亚平 committed
52
     */
涂亚平 committed
53
    private String courseCode;
涂亚平 committed
54 55

    /**
涂亚平 committed
56
     * 课程性质
涂亚平 committed
57
     */
涂亚平 committed
58
    private String courseType;
涂亚平 committed
59 60

    /**
涂亚平 committed
61 62 63 64 65 66 67 68 69 70
     * 开课对象
     */
    private Integer courseObject;

    /**
     * 开课对象专业
     */
    private String courseObjectMajor;

    /**
涂亚平 committed
71
     * 开课年级
涂亚平 committed
72
     */
涂亚平 committed
73 74 75 76 77
    private String grade;

    /**
     * 课程总学时
     */
涂亚平 committed
78
    private BigDecimal courseHour;
涂亚平 committed
79 80

    /**
涂亚平 committed
81
     * 理论学时【弃用】
涂亚平 committed
82
     */
涂亚平 committed
83
    private String theoryHour;
涂亚平 committed
84 85 86 87

    /**
     * 实践学时
     */
涂亚平 committed
88
    private BigDecimal practiseHour;
涂亚平 committed
89 90 91 92

    /**
     * 分数
     */
涂亚平 committed
93
    private BigDecimal score;
涂亚平 committed
94 95 96 97 98 99 100 101 102 103

    private String startDate1;

    private String endDate1;

    private String startDate2;

    private String endDate2;

    /**
涂亚平 committed
104 105 106 107 108 109
     * 最近学生总人数1
     */
    private Integer studentTotalNum1;

    /**
     * 最近学生总人数2
涂亚平 committed
110
     */
涂亚平 committed
111
    private Integer studentTotalNum2;
涂亚平 committed
112 113 114 115 116

    /**
     * 学期
     */
    private String semester;
涂亚平 committed
117 118 119 120 121 122 123 124 125 126 127

    /**
     * 开始时间
     */
    private String startDate;

    /**
     * 结束时间
     */
    private String endDate;

涂亚平 committed
128 129 130
    /**
     * 授课学时
     */
涂亚平 committed
131
    private BigDecimal teachHours;
涂亚平 committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216

    /**
     * 授课年级
     */
    private String teachGrade;

    /**
     * 班级人数
     */
    private Integer classTotalNum;

    /**
     * 整体课程团队教学情况
     */
    private String courseTeam;

    /**
     * 课程概述
     */
    private String courseDesc;

    /**
     * 课程目标
     */
    private String courseTarget;

    /**
     * 授课任务 300字
     */
    private String courseMission;

    /**
     * 课程内容与教学安排
     */
    private String courseContent;

    /**
     * 教材及教辅材料
     */
    private String teachFiles;

    /**
     * 教研成果及教学改革
     */
    private String teachResult;

    /**
     * 课程特色与创新点
     */
    private String courseFeature;

    /**
     * 项目状态
     */
    private String projectStatus;

    /**
     * 项目进度
     */
    private String projectSchedule;

    /**
     * 审核状态
     */
    private String projectReview;

    /**
     * 分配状态
     */
    private String projectAssigned;

    /**
     * 盖章pdf附件
     */
    private String attachment;

    /**
     * 视频
     */
    private String vodUrl;

    /**
     * 视频上传时间
     */
    private String uploadDate;
涂亚平 committed
217

涂亚平 committed
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
    /**
     * 课程支撑材料上传
     */
    private String supportFile;

    /**
     * 相关成果
     */
    private String relateResult;

    /**
     * 教学反思和自我评价
     */
    private String teachComment;

    /**
     * 开课单位
     */
    private String companyName;

    /**
     * 课程地址
     */
    private String courseUrl;

涂亚平 committed
243
}