Blame view

ChapterVodsVO.java 362 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.meishu.dto.chapter;

import lombok.Data;

@Data
public class ChapterVodsVO {

    private Long vodId;

    private String vodName;

    private String treeName;

    private Integer vodLength;

    private Integer playRecord;

    private String lengthPercent;

    private String createTime;

    private Integer playCounts;

    private Long id;
}