| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import annotation.Excel; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.ycl.platform.base.CheckIndex; |
| | | import com.ycl.system.entity.BaseEntity; |
| | | import org.apache.commons.lang.builder.ToStringBuilder; |
| | | import org.apache.commons.lang.builder.ToStringStyle; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 视频指标概率数据对象 t_check_index_video |
| | |
| | | @Excel(name = "月运行率") |
| | | private BigDecimal operatingRate; |
| | | |
| | | @ExcelIgnore |
| | | private List<String> quarter; |
| | | |
| | | public List<String> getQuarter() { |
| | | return quarter; |
| | | } |
| | | |
| | | public void setQuarter(List<String> quarter) { |
| | | this.quarter = quarter; |
| | | } |
| | | |
| | | public BigDecimal getPlatformOnline() { |
| | | return platformOnline; |
| | | } |