南昌市物联网技防平台-后台
tangzy
2021-03-17 7e6b4d0547e1b46df3cb3f0385e5d50ce3ca8a5d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.springblade.jfpt.parcel.vo;
 
import io.swagger.models.auth.In;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class ConditionVo implements Serializable {
    /**
     * 开始时间
     */
    private String startDate;
    /**
     * 结束时间
     */
    private String endDate;
 
    /**
     * 状态码 0:本天    1:本周   2:本月
     */
    private Integer status;
}