批量开课
This commit is contained in:
14
src/main/java/com/peanut/modules/common/to/AddCourses.java
Normal file
14
src/main/java/com/peanut/modules/common/to/AddCourses.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import com.peanut.modules.common.entity.MyUserEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
@Data
|
||||
public class AddCourses {
|
||||
|
||||
private String catalogueId;
|
||||
private Integer days;
|
||||
private ArrayList<MyUserEntity> list;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.peanut.modules.common.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AddCoursesFrag {
|
||||
|
||||
private Integer userId;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer courseId;
|
||||
|
||||
private Integer catalogueId;
|
||||
|
||||
private String tel;
|
||||
|
||||
private boolean frag;
|
||||
}
|
||||
Reference in New Issue
Block a user