通用模块-快递

This commit is contained in:
wuchunlei
2024-03-26 11:25:00 +08:00
parent 02409d6137
commit 1cfa376ade
17 changed files with 693 additions and 1 deletions

View File

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