jinpengyong
2024-02-01 661e56eb85e3bd0e35e94fca2d2ec59e77772da5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.moral.api.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
import com.moral.api.pojo.query.PageCond;
 
/**
 * Description //todo
 *
 * @author swb
 * @ClassName OnlineRatePageCond
 * @date 2024.01.26 11:04
 */
 
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="OnlineRate - 分页查询对象", description="OnlineRate - 分页查询对象")
public class OnlineRatePageCond implements Serializable {
 
 
    @ApiModelProperty(value = "组织id")
    private  Integer organizationId;
 
//    @ApiModelProperty(value = "分页参数")
//    private PageCond page;
 
    @ApiModelProperty(value = "开始时间")
    private  String startTime;
 
    @ApiModelProperty(value = "结束时间")
    private  String endTime;
    @ApiModelProperty(value = "状态")
    private Integer state;
    @ApiModelProperty(value = "小时状态")
    private  String hourState;
 
 
}