This commit is contained in:
2023-03-04 16:29:55 +08:00
commit 397ba75479
1007 changed files with 109050 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 小程序查询订单列表DTO
*
* @author JS-ZZA
* @date 2022/11/25 15:16
*/
@Data
public class UniAppQueryOrderDTO {
private int pageSize;
private int pageNum;
/**
* 订单状态 1-全部 2-未完成 3-已完成
*/
private String orderStatus;
/**
* 订单编号
*/
private String orderCode;
}