Blame view

GetAllClassesVO.java 426 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9
package com.subsidy.vo.classdict;

import lombok.Data;

@Data
public class GetAllClassesVO {

    private Integer id;

涂亚平 committed
10 11
    private Integer courseId;

涂亚平 committed
12 13
    private String className;

涂亚平 committed
14 15
    private String classCode;

涂亚平 committed
16 17 18 19 20 21 22 23
    private String courseName;

    private String startDate;

    private String endDate;

    private Integer cnt;

24 25
    private String classType;

涂亚平 committed
26 27
    private String openStatus;

涂亚平 committed
28
    private Long classTypeId;
涂亚平 committed
29

涂亚平 committed
30
}