2021与蓝度共同重构项目,服务端
Van333
2022-12-29 727a69f859060093e685582fa10e5de82dcc138a
dao/src/main/java/com/sandu/ximon/dao/domain/LEDProgram.java
@@ -4,27 +4,40 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
/**
 * LED节目表
 *
 * @TableName led_program
 */
@TableName(value ="led_program")
@TableName(value = "led_program")
@Data
public class LEDProgram implements Serializable {
    /**
     *
     *
     */
    @TableId(type = IdType.AUTO)
    private Long id;
    /**
     *
     *
     */
    private Long userId;
    /**
     *
     */
    private Long clientId;
    /**
     *
     */
    private String userName;
    /**
     * 节目名称
@@ -32,19 +45,24 @@
    private String name;
    /**
     * 大小
     * 预览图
     */
    private Double size;
    private String preview;
    /**
     * 尺寸
     * 节目宽
     */
    private String pixel;
    private Integer width;
    /**
     *
     * 节目高
     */
    private String programBase64;
    private Integer height;
    /**
     * pages实体
     */
    private String pages;
    /**
     * 适用型号 0:N 1:S
@@ -52,10 +70,15 @@
    private Integer kind;
    /**
     *
     *
     */
    private LocalDateTime createTime;
    /**
     *
     */
    private LocalDateTime updateTime;
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}