guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.stylefeng.guns.modular.business.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@ApiModel("用户课时统计")
@Data
public class UserCounsellingTotalDTO implements Serializable {
 
    @ApiModelProperty("总课时数")
    private Integer totalNum;
 
    @ApiModelProperty("未上课时数")
    private Integer residueClassHoursNum;
 
 
}