| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.usky.iot.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- *
- * </p>
- *
- * @author han
- * @since 2026-01-20
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class BaseScreen implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 大屏管理信息表
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 大屏编号
- */
- private String screenCode;
- /**
- * 大屏标题
- */
- private String screenTitle;
- /**
- * 副标题
- */
- private String screenSubtitle;
- /**
- * 分组
- */
- private Integer screenGroup;
- /**
- * 是否默认
- */
- private Integer isDefault;
- /**
- * 大屏地址
- */
- private String screenAddress;
- /**
- * 显示顺序
- */
- private Integer orderNum;
- /**
- * 缩略图URL
- */
- private String thumbnailUrl;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建人
- */
- private String createdBy;
- /**
- * 创建时间
- */
- private LocalDateTime createdTime;
- /**
- * 更新人
- */
- private String updatedBy;
- /**
- * 更新时间
- */
- private LocalDateTime updatedTime;
- /**
- * 租户号
- */
- private Integer tenantId;
- }
|