liding
9 天以前 9e68afc48ed0144b65cb015e489a80f1bfa22e9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.fakeWarehousing.dto;
 
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDate;
 
@Data
public class FakeDeliveryTrackDto {
 
    private String keyword;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate startDate;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate endDate;
}