提交 0c9bea3d authored 作者: niguanghui's avatar niguanghui

--no commit message

上级 522efce6
package com.zrqx.core.vo.statistics.numStatistics;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "NumContrastVo", description = "统计-资源数量-部门资源对比Vo")
public class NumContrastVo {
@ApiModelProperty(value = "部门id")
private Integer departmentId;
@ApiModelProperty(value = "资源数量")
private Integer num;
@ApiModelProperty(value = "资源类型")
private Integer resourceType;
}
package com.zrqx.core.vo.statistics.numStatistics;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "NumCountVo", description = "统计-资源数量-列表统计Vo")
public class NumCountVo {
@ApiModelProperty(value = "资源类型")
private Integer resourceType;
@ApiModelProperty(value = "资源数量")
private Integer num;
@ApiModelProperty(value = "资源种类数")
private Integer classNum;
@ApiModelProperty(value = "资源下载量,暂时没做 先用--代替")
private Integer download;
}
package com.zrqx.core.vo.statistics.useStatistics;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "UseContrastVo", description = "统计-资源使用情况-年/月度对比Vo")
public class UseContrastVo {
@ApiModelProperty(value = "资源类型")
private Integer resourceType;
@ApiModelProperty(value = "交易金额,暂时没做 先用--代替")
private Integer money;
@ApiModelProperty(value = "年/月份")
private Integer time;
}
package com.zrqx.core.vo.statistics.useStatistics;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "CountVo", description = "统计-资源使用-列表统计Vo")
public class UseCountVo {
@ApiModelProperty(value = "资源类型")
private Integer resourceType;
@ApiModelProperty(value = "资源使用量,暂时没做 先用--代替")
private Integer num;
@ApiModelProperty(value = "交易次数,暂时没做 先用--代替")
private Integer frequency;
@ApiModelProperty(value = "交易金额,暂时没做 先用--代替")
private Integer money;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论