| | |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 直播 */ |
| | | /** 直播 */ |
| | | public static final int RECORD_LIVE = 1; |
| | | |
| | | /** 回放 */ |
| | | /** 回放 */ |
| | | public static final int RECORD_PLAY_BACK = 2; |
| | | |
| | | /** 主键 */ |
| | | /** 主键 */ |
| | | @Id |
| | | @GeneratedValue(generator = "hibernate-uuid") |
| | | @GenericGenerator(name = "hibernate-uuid", strategy = "uuid") |
| | | @Column(name="VIDEO_RECORD_ID", unique=true, nullable=false, length=32) |
| | | private String videoRecordId; |
| | | |
| | | /** 创建者ID */ |
| | | /** 创建者ID */ |
| | | @Column(name="CREATE_ID", nullable=false, length=32) |
| | | private String createId; |
| | | |
| | | /** 创建时间 */ |
| | | /** 创建时间 */ |
| | | @Column(name="CREATE_TIME", nullable=false) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | /** 创建人 */ |
| | | /** 创建人 */ |
| | | @Column(name="CREATOR", nullable=false, length=100) |
| | | private String creator; |
| | | |
| | | /** 删除标志 */ |
| | | /** 删除标志 */ |
| | | @Column(name="DELETE_FLAG", nullable=false) |
| | | private boolean deleteFlag; |
| | | |
| | | /** 修改人ID */ |
| | | /** 修改人ID */ |
| | | @Column(name="UPDATE_ID", length=32) |
| | | private String updateId; |
| | | |
| | | /** 修改时间 */ |
| | | /** 修改时间 */ |
| | | @Column(name="UPDATE_TIME", nullable=false) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date updateTime; |
| | | |
| | | /** 修改人 */ |
| | | /** 修改人 */ |
| | | @Column(name="UPDATOR", length=100) |
| | | private String updator; |
| | | |
| | | /** 机构ID */ |
| | | /** 机构ID */ |
| | | @Column(name="ORG_ID",length=32) |
| | | private String orgId; |
| | | |
| | | /** 班级ID */ |
| | | /** 班级ID */ |
| | | @Column(name="CLASS_ID",length=32) |
| | | private String classId; |
| | | |
| | | /** 视频ID */ |
| | | /** 视频ID */ |
| | | @Column(name="VIDEO_ID",length=32) |
| | | private String videoId; |
| | | |
| | | /** 直播ID */ |
| | | /** 直播ID */ |
| | | @Column(name="LIVE_ID",length=32) |
| | | private String liveId; |
| | | |
| | | /** 用户ID */ |
| | | /** 用户ID */ |
| | | @Column(name="USER_ID",length=32) |
| | | private String userId; |
| | | |
| | | /** 记录类型(1 直播 2 回放)*/ |
| | | /** 记录类型(1 直播 2 回放)*/ |
| | | @Column(name="TYPE",length=1) |
| | | private Integer type; |
| | | /** 观看进度 (观看视频的进度) */ |
| | | /** 观看进度 (观看视频的进度) */ |
| | | @Column(name="WATCH_TIME",length=11) |
| | | private Integer watchTime; |
| | | |
| | | /** 离开时间 */ |
| | | /** 离开时间 */ |
| | | @Column(name="LEAVE_TIME") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date leaveTime; |
| | | |
| | | /** 播放时间()*/ |
| | | /** 播放时间()*/ |
| | | @Column(name="PLAY_TIME") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date playTime; |
| | | |
| | | /** 网络 */ |
| | | /** 网络 */ |
| | | @Column(name="NETWORK",length=15) |
| | | private String network; |
| | | |
| | | /** ƽ̨ */ |
| | | /** 平台 */ |
| | | @Column(name="PLATFORM",length=15) |
| | | private String platform; |
| | | |
| | | /** 版本 */ |
| | | /** 版本 */ |
| | | @Column(name="VERSION",length=15) |
| | | private String version; |
| | | |
| | | /** 机型 */ |
| | | /** 机型 */ |
| | | @Column(name="model",length=50) |
| | | private String model; |
| | | |
| | | /** app版本 */ |
| | | /** app版本 */ |
| | | @Column(name="APP_VERSION",length=15) |
| | | private String appVersion; |
| | | |
| | | /** 运营商 */ |
| | | /** 运营商 */ |
| | | @Column(name="OPERATOR",length=15) |
| | | private String operator; |
| | | |