Blame view

MatchDictDO.java 1.09 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12
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 java.time.LocalDateTime;
import lombok.Data;
import lombok.EqualsAndHashCode;

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

    private static final long serialVersionUID = 1L;

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

    /**
涂亚平 committed
30
     * 赛事名称
涂亚平 committed
31
     */
涂亚平 committed
32
    private String matchName;
涂亚平 committed
33 34

    /**
涂亚平 committed
35
     * 赛事年份
涂亚平 committed
36
     */
涂亚平 committed
37
    private String year;
涂亚平 committed
38 39

    /**
涂亚平 committed
40
     * 报名开始时间
涂亚平 committed
41
     */
涂亚平 committed
42
    private String startTime;
涂亚平 committed
43 44

    /**
涂亚平 committed
45
     * 报名结束时间
涂亚平 committed
46
     */
涂亚平 committed
47
    private String endTime;
涂亚平 committed
48 49

    /**
涂亚平 committed
50
     * 状态(1:启动,0:暂停)
涂亚平 committed
51
     */
涂亚平 committed
52
    private Integer status;
涂亚平 committed
53

涂亚平 committed
54 55 56 57 58 59 60
    private String vodStartTime;

    private String vodEndTime;

    private String fileStartTime;

    private String fileEndTime;
涂亚平 committed
61 62

}