Blame view

ProjectDO.java 2.96 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11
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;

/**
 * <p>
涂亚平 committed
12
 * 
涂亚平 committed
13 14 15
 * </p>
 *
 * @author Tuyp
涂亚平 committed
16
 * @since 2025-01-07
涂亚平 committed
17 18 19 20 21 22 23 24 25 26 27
 */
@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
28 29 30 31 32 33 34 35
    private Long matchId;

    private Long teacherId;

    private Long collegeId;

    private String projectGroup;

涂亚平 committed
36
    /**
涂亚平 committed
37
     * 课程名称
涂亚平 committed
38
     */
涂亚平 committed
39
    private String courseName;
涂亚平 committed
40 41

    /**
涂亚平 committed
42
     * 课程编码
涂亚平 committed
43
     */
涂亚平 committed
44
    private String courseCode;
涂亚平 committed
45 46

    /**
涂亚平 committed
47
     * 课程性质
涂亚平 committed
48
     */
涂亚平 committed
49
    private String courseType;
涂亚平 committed
50 51

    /**
涂亚平 committed
52
     * 开课年级
涂亚平 committed
53
     */
涂亚平 committed
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 91 92 93 94 95 96 97
    private String grade;

    /**
     * 课程总学时
     */
    private Integer courseHour;

    /**
     * 理论学时
     */
    private Integer theoryHour;

    /**
     * 实践学时
     */
    private Integer practiseHour;

    /**
     * 分数
     */
    private Integer score;

    /**
     * 授课年数
     */
    private String years;

    private String startDate1;

    private String endDate1;

    private String startDate2;

    private String endDate2;

    /**
     * 最近两轮学生总人数
     */
    private Integer studentTotalNum;

    /**
     * 学期
     */
    private String semester;
涂亚平 committed
98 99 100 101 102 103 104 105 106 107 108

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

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

涂亚平 committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 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
    /**
     * 授课学时
     */
    private Integer teachHours;

    /**
     * 授课年级
     */
    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
198 199

}