用户订单列表

This commit is contained in:
wangjinlei
2023-10-26 19:37:23 +08:00
parent c5e6cfdc89
commit 78ef8bc4ac
6 changed files with 59 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
package com.peanut.modules.book.to;
import lombok.Data;
import java.io.Serializable;
@Data
public class UserOrderDto implements Serializable {
private Integer userId;
private Integer orderStatus;
private Integer limit;
private Integer page;
}