Blame view

GetTreeVodsVO.java 642 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
package com.meishu.vo.voddict;

import com.meishu.model.SubjectTreeDO;
import lombok.Data;

import java.util.List;

@Data
public class GetTreeVodsVO {

    private Long id;

    private String vodName;

    private List<SubjectTreeDO> trees;

    private String vodUrl;

    private String vodType;

    private String userName;

    private String updateTime;

    private Integer playCounts;

    private String vodSize;

    private Integer vodLength;

    private String vodIntro;

    private String vodCode;

    private String shareStatus;

    private String checkStatus;

    private String coverPage;

    private String status;

}