From 5ea8ef80312e8c1d3365abe7106622d676def195 Mon Sep 17 00:00:00 2001 From: huangzhen <867127663@qq.com> Date: 星期五, 30 九月 2022 16:41:09 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/ruoyi/doublePrevention/entity/dto/req/SPIDataCountReqDTO.java | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/SPIDataCountReqDTO.java b/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/SPIDataCountReqDTO.java new file mode 100644 index 0000000..18e9d98 --- /dev/null +++ b/src/main/java/com/ruoyi/doublePrevention/entity/dto/req/SPIDataCountReqDTO.java @@ -0,0 +1,46 @@ +package com.ruoyi.doublePrevention.entity.dto.req; + +public class SPIDataCountReqDTO { + + private Integer month; + + private Integer year; + + /* 时间类型,1-月; 2-年*/ + private Byte type; + + /* 部门id*/ + private Long depId; + + public Integer getMonth() { + return month; + } + + public void setMonth(Integer month) { + this.month = month; + } + + public Integer getYear() { + return year; + } + + public void setYear(Integer year) { + this.year = year; + } + + public Byte getType() { + return type; + } + + public void setType(Byte type) { + this.type = type; + } + + public Long getDepId() { + return depId; + } + + public void setDepId(Long depId) { + this.depId = depId; + } +} -- Gitblit v1.9.2