refactor project
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
package com.peanut.modules.book.vo.request;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Description: 订单列表查询 Value Object
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/19
|
||||
*/
|
||||
@Data
|
||||
public class BuyOrderListRequestVo {
|
||||
/**
|
||||
* 页号
|
||||
*/
|
||||
private Integer pageIndex;
|
||||
/**
|
||||
* 页大小
|
||||
*/
|
||||
private Integer pageSize;
|
||||
/**
|
||||
* 搜索关键词
|
||||
*/
|
||||
private String searchKeyWord;
|
||||
/**
|
||||
* 开始时间
|
||||
*/
|
||||
private Date startTime;
|
||||
/**
|
||||
* 结束时间
|
||||
*/
|
||||
private Date endTime;
|
||||
/**
|
||||
* 订单状态
|
||||
*/
|
||||
private Integer orderStatus;
|
||||
}
|
||||
@@ -74,5 +74,13 @@ public class ExpressOrderRequestVo {
|
||||
* 是否返回电子面单模板
|
||||
*/
|
||||
private Integer IsReturnPrintTemplate;
|
||||
/**
|
||||
* 快递客户号
|
||||
*/
|
||||
private String CustomerName;
|
||||
/**
|
||||
* 快递客户密码
|
||||
*/
|
||||
private String CustomerPwd;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
package com.peanut.modules.book.vo.request;
|
||||
|
||||
import com.peanut.modules.book.entity.ShopProductEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description: 计算运费
|
||||
|
||||
Reference in New Issue
Block a user