Blame view

GetClassesDetailResponseVO.java 546 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
package com.meishu.vo.administer;

import lombok.Data;

/**
 * @author: tuyp
 * @create: 2020-07-20 22:32
 */
@Data
public class GetClassesDetailResponseVO {

    private Integer subjectId;

    private String className;

    private String school;

    private String grade;

    private String classes;

    private String subjectType;

    private String session;

    private String status;

    private String subject;

    private String subjectEn;

    private String classId;

    private Integer userId;

    private String semester;

}