puzhibing
2024-02-22 cbca62b053eb3dc3cc7754aa0062aaf1e04e2cb4
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
package com.dsh.communityWorldCup.model;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2024/2/22 15:44
 */
@Data
public class DeductionClassHour {
    /**
     * 课时记录id
     */
    private Long id;
    /**
     * 学员id
     */
    private Integer studentId;
    /**
     * 课时id
     */
    private Integer coursePackageId;
    /**
     * 扣减课时
     */
    private Integer classHour;
}