Blame view

GetExeByIdResponseVO.java 516 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
package com.meishu.vo.task;

import lombok.Data;

/**
 * @author: tuyp
 * @create: 2020-06-17 17:33
 */
@Data
public class GetExeByIdResponseVO {

    private Integer id;

    private Integer adviceLength;

    private String treeId;

    private String exerciseType;

    private String title;

    private String rightAnswer;

    private String detail;

    private Integer status;

    private Integer userId;

    private Integer difficulty;

    private String items;

    private Integer collectionStatus;

}