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; /** * 用于支付的课程 */ private Long courseId; private Integer uid; }