begin new project
This commit is contained in:
19
src/main/java/com/peanut/modules/common/to/AddCourses.java
Normal file
19
src/main/java/com/peanut/modules/common/to/AddCourses.java
Normal file
@@ -0,0 +1,19 @@
|
||||
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 catalogue_id;
|
||||
private Integer days;
|
||||
private ArrayList<MyUserEntity> list;
|
||||
private String payType;
|
||||
private String orderSn;
|
||||
private String fee;
|
||||
private String jf;
|
||||
private String remark;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class ChangeCatalogueFeeDto {
|
||||
|
||||
private Integer catalogueId;
|
||||
|
||||
//0半年1全年
|
||||
private Integer type ;
|
||||
|
||||
private BigDecimal fee;
|
||||
|
||||
private Integer productId;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class EditCourseRecordDto {
|
||||
private Integer type;
|
||||
private Integer recordType;
|
||||
private String content;
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ExpressPrintDto {
|
||||
|
||||
/**
|
||||
* 时间2023-10-10
|
||||
*/
|
||||
private String date;
|
||||
|
||||
/**
|
||||
* 快递订单号
|
||||
*/
|
||||
private String expressOrderSn;
|
||||
|
||||
/**
|
||||
* 类型,0不限1已打印2未打印
|
||||
*/
|
||||
private Integer type;
|
||||
|
||||
private Integer limit;
|
||||
|
||||
private Integer page;
|
||||
}
|
||||
|
||||
20
src/main/java/com/peanut/modules/common/to/ParamTo.java
Normal file
20
src/main/java/com/peanut/modules/common/to/ParamTo.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
@Slf4j
|
||||
@Data
|
||||
public class ParamTo {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private Integer limit;
|
||||
|
||||
private Integer page;
|
||||
|
||||
private String keywords;
|
||||
|
||||
private String type;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class PrepareOrderDto {
|
||||
|
||||
private Integer uid;
|
||||
|
||||
private List<Map<String,Integer>> productList;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.common.to;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class VipOrderDto {
|
||||
|
||||
// private Integer
|
||||
}
|
||||
Reference in New Issue
Block a user