Blame view

ClassHourDictDO.java 1.09 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 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 53 54 55 56 57 58 59 60 61 62 63 64
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
 * @since 2024-01-11
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("class_hour_dict")
public class ClassHourDictDO extends BaseModel {

    private static final long serialVersionUID = 1L;

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

    /**
     * 公司id
     */
    private Long companyId;

    /**
     * 课时
     */
    private Integer classHour;

    /**
     * 断联时间,单位分钟
     */
    private Integer interrupt;

    /**
     * 重复测试次数
     */
    private Integer repeatTime;

    /**
     * 有效/无效
     */
    private Integer status;

    /**
     * 断联是否开启
     */
    private Integer interruptStatus;

    /**
     * 是否开启重复测试
     */
    private Integer repeatStatus;


}