1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.dsh.course.feignclient.model;
|
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @date 2023/7/10 15:05
| */
| @Data
| public class PaymentDeductionClassHour {
| /**
| * 学员id
| */
| private Integer id;
| /**
| * 扣减课时
| */
| private Integer classHour;
| /**
| * 支付编号
| */
| private String code;
| }
|
|