package com.sandu.ximon.dao.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
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;
|
|
/**
|
*
|
* @TableName pole_xixun_player
|
*/
|
@TableName(value ="pole_xixun_player")
|
@Data
|
public class PoleXixunPlayerEntity implements Serializable {
|
/**
|
*
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long programId;
|
|
/**
|
*
|
*/
|
private String programCode;
|
|
/**
|
*
|
*/
|
private String programName;
|
|
/**
|
*
|
*/
|
private String totalSize;
|
|
/**
|
*
|
*/
|
private Long width;
|
|
/**
|
*
|
*/
|
private Long height;
|
|
/**
|
*
|
*/
|
private String requestBody;
|
|
/**
|
*
|
*/
|
private LocalDateTime creatTime;
|
|
/**
|
*
|
*/
|
private String screenShot;
|
|
/**
|
*
|
*/
|
private Long createUserId;
|
|
/**
|
*
|
*/
|
private Long clientId;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|