| | |
| | | @Schema(description = "结束时间") |
| | | private String endTime; |
| | | |
| | | @Schema(description = "活动前开始时间") |
| | | private String beforeStartTime; |
| | | |
| | | @Schema(description = "活动前结束时间") |
| | | private String beforeEndTime; |
| | | |
| | | @Schema(description = "活动后开始时间") |
| | | private String afterStartTime; |
| | | |
| | | @Schema(description = "活动后结束时间") |
| | | private String afterEndTime; |
| | | |
| | | public void setOrgCodeIfnull(String orgCode) { |
| | | if (this.orgCode == null || this.orgCode.equals("")){ |
| | | this.orgCode = orgCode; |
| | |
| | | @Schema(description = "HOURS, DAYS, MONTHS") |
| | | private StatUnit timeUnit = StatUnit.HOURS; |
| | | |
| | | @Schema(description = "趋势图点位时间") |
| | | private String statTime; |
| | | |
| | | @Schema(description = "趋势图系列名称") |
| | | private String seriesName; |
| | | |
| | | private DataStatisReqVo setTimeUnit(String timeUnit){ |
| | | this.timeUnit = StatUnit.valueOf(timeUnit); |
| | | return this; |