| | |
| | | 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_file |
| | | */ |
| | | @TableName(value ="led_program_file") |
| | | @TableName(value = "led_program_file") |
| | | @Data |
| | | public class LEDProgramFile implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private Long clientId; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String userName; |
| | | |
| | |
| | | private String fileUrl; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private String screenShot; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private String md5; |
| | | |
| | |
| | | private Integer kind; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private LocalDateTime createTime; |
| | | |