Commit ce8d8ff5 by 丁伟峰

增加了日期查询

1 parent 535826ec
package com.alibaba.cloud.integration.order.dto; package com.alibaba.cloud.integration.order.dto;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date; import java.util.Date;
@lombok.Data @lombok.Data
...@@ -14,6 +16,7 @@ public class OrderChangeListReqDTO { ...@@ -14,6 +16,7 @@ public class OrderChangeListReqDTO {
private String levelValue; private String levelValue;
private int page; private int page;
private int size; private int size;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date date = new Date(); private Date date = new Date();
/** /**
* 排序 * 排序
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!