platform
parent
4d6a8e25eb
commit
654b8f61e6
@ -0,0 +1,35 @@
|
||||
package com.ruoyi.system.domain.resp;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author zhuqing
|
||||
* @Date 2022/8/9
|
||||
*/
|
||||
public class WeekMonthTimeResp {
|
||||
|
||||
@ApiModelProperty("count")
|
||||
private int count;
|
||||
|
||||
@ApiModelProperty("创建时间/小时")
|
||||
private Integer createTime;
|
||||
|
||||
public int getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(int count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public Integer getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Integer createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue