puzhibing
2023-11-27 215822557a0eab337553832c3c0f92b81018c46a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dsh.course.entity;
 
import lombok.Data;
 
@Data
public class OrderDto {
    private String stuIds;
 
    private Integer appUserId;
 
    private Integer classId;
 
    private Integer classHours;
}