Blame view

CollegeFileDO.java 1012 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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>
 * 
 * </p>
 *
 * @author Tuyp
涂亚平 committed
16
 * @since 2025-01-09
涂亚平 committed
17 18 19
 */
@Data
@EqualsAndHashCode(callSuper = true)
涂亚平 committed
20 21
@TableName("college_file")
public class CollegeFileDO extends BaseModel {
涂亚平 committed
22 23 24 25 26 27

    private static final long serialVersionUID = 1L;

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

涂亚平 committed
28
    private Long collegeId;
涂亚平 committed
29

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

    /**
涂亚平 committed
33
     * 汇总表
涂亚平 committed
34
     */
涂亚平 committed
35 36 37 38 39 40 41
    private String summaryUrl;

    private String summaryName;

    private String pptUrl;

    private String pptName;
涂亚平 committed
42 43

    /**
涂亚平 committed
44
     * 文字报告
涂亚平 committed
45
     */
涂亚平 committed
46 47 48
    private String wordReportUrl;

    private String wordReportName;
涂亚平 committed
49 50

    /**
涂亚平 committed
51
     * 支持材料
涂亚平 committed
52
     */
涂亚平 committed
53 54 55
    private String supportFileUrl;

    private String supportFileName;
涂亚平 committed
56 57 58


}