refactor project

This commit is contained in:
Cauchy
2023-10-19 15:04:31 +08:00
parent 19a2ef58a9
commit 1994ba60ae
35 changed files with 274 additions and 226 deletions

View File

@@ -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;
}

View File

@@ -74,5 +74,13 @@ public class ExpressOrderRequestVo {
* 是否返回电子面单模板
*/
private Integer IsReturnPrintTemplate;
/**
* 快递客户号
*/
private String CustomerName;
/**
* 快递客户密码
*/
private String CustomerPwd;
}

View File

@@ -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: 计算运费