| 12345678910111213141516171819202122232425 |
- package com.chuanghai.ihotel.controller.request;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.time.LocalDateTime;
- /**
- * @Author: binguo
- * @Date: 2022/12/7 星期三 11:45
- * @Description: 统计报表查询条件
- * @Version: 1.0
- */
- @Data
- public class StatisticalReportRequest {
- /**
- * 起始时间 yyyy-MM-dd HH:mm:ss
- */
- private String startTime;
- /**
- * 终止时间 yyyy-MM-dd HH:mm:ss
- */
- private String endTime;
- }
|