| | |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | import com.moral.api.pojo.query.PageCond; |
| | | |
| | |
| | | public class OnlineRatePageCond implements Serializable { |
| | | |
| | | |
| | | @ApiModelProperty(value = "组织id") |
| | | private Integer organizationId; |
| | | @ApiModelProperty(value = "设备集合") |
| | | private List<String> macs; |
| | | |
| | | // @ApiModelProperty(value = "分页参数") |
| | | // private PageCond page; |
| | |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | private String endTime; |
| | | @ApiModelProperty(value = "状态") |
| | | private Integer state; |
| | | @ApiModelProperty(value = "小时状态") |
| | | private String hourState; |
| | | |
| | | |
| | | } |