package com.ruoyi.other.api.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
|
@Data
|
public class ShopAnalysisDTO {
|
|
private Integer shopId;
|
|
@JsonFormat(pattern = "yyyy-MM-dd",shape = JsonFormat.Shape.STRING)
|
private LocalDate startTime;
|
|
@JsonFormat(pattern = "yyyy-MM-dd",shape = JsonFormat.Shape.STRING)
|
private LocalDate endTime;
|
}
|