zhaoxianglong
5 months ago
4 changed files with 246 additions and 0 deletions
@ -0,0 +1,61 @@ |
|||||
|
package com.zc.business.domain.export; |
||||
|
|
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import com.ruoyi.common.core.domain.BaseEntity; |
||||
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
||||
|
|
||||
|
/** |
||||
|
* 导出非机预警统计分析(按站点)对象 |
||||
|
* |
||||
|
* @author ruoyi |
||||
|
* @date 2024-01-13 |
||||
|
*/ |
||||
|
public class NonAutomaticWarningFacility extends BaseEntity |
||||
|
{ |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** 站点 */ |
||||
|
@Excel(name = "站点") |
||||
|
private String facilityName; |
||||
|
|
||||
|
/** 数量 */ |
||||
|
@Excel(name = "数量") |
||||
|
private String number; |
||||
|
/** 占比 */ |
||||
|
@Excel(name = "占比") |
||||
|
private String ratio; |
||||
|
|
||||
|
public String getFacilityName() { |
||||
|
return facilityName; |
||||
|
} |
||||
|
|
||||
|
public void setFacilityName(String facilityName) { |
||||
|
this.facilityName = facilityName; |
||||
|
} |
||||
|
|
||||
|
public String getNumber() { |
||||
|
return number; |
||||
|
} |
||||
|
|
||||
|
public void setNumber(String number) { |
||||
|
this.number = number; |
||||
|
} |
||||
|
|
||||
|
public String getRatio() { |
||||
|
return ratio; |
||||
|
} |
||||
|
|
||||
|
public void setRatio(String ratio) { |
||||
|
this.ratio = ratio; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this) |
||||
|
.append("facilityName", facilityName) |
||||
|
.append("number", number) |
||||
|
.append("ratio", ratio) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
package com.zc.business.domain.export; |
||||
|
|
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import com.ruoyi.common.core.domain.BaseEntity; |
||||
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
||||
|
|
||||
|
/** |
||||
|
* 导出非机预警统计分析(按日期)对象 |
||||
|
* |
||||
|
* @author ruoyi |
||||
|
* @date 2024-01-13 |
||||
|
*/ |
||||
|
public class NonAutomaticWarningTimeType extends BaseEntity |
||||
|
{ |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** 时间 */ |
||||
|
@Excel(name = "时间") |
||||
|
private String time; |
||||
|
|
||||
|
/** 数量 */ |
||||
|
@Excel(name = "数量") |
||||
|
private String number; |
||||
|
|
||||
|
public String getTime() { |
||||
|
return time; |
||||
|
} |
||||
|
|
||||
|
public void setTime(String time) { |
||||
|
this.time = time; |
||||
|
} |
||||
|
|
||||
|
public String getNumber() { |
||||
|
return number; |
||||
|
} |
||||
|
|
||||
|
public void setNumber(String number) { |
||||
|
this.number = number; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this) |
||||
|
.append("time", time) |
||||
|
.append("number", number) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
@ -0,0 +1,61 @@ |
|||||
|
package com.zc.business.domain.export; |
||||
|
|
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import com.ruoyi.common.core.domain.BaseEntity; |
||||
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
||||
|
|
||||
|
/** |
||||
|
* 导出非机预警统计分析(按事件分类)对象 |
||||
|
* |
||||
|
* @author ruoyi |
||||
|
* @date 2024-01-13 |
||||
|
*/ |
||||
|
public class NonAutomaticWarningType extends BaseEntity |
||||
|
{ |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** 类型 */ |
||||
|
@Excel(name = "类型") |
||||
|
private String subclass; |
||||
|
|
||||
|
/** 数量 */ |
||||
|
@Excel(name = "数量") |
||||
|
private String number; |
||||
|
/** 占比 */ |
||||
|
@Excel(name = "占比") |
||||
|
private String ratio; |
||||
|
|
||||
|
public String getSubclass() { |
||||
|
return subclass; |
||||
|
} |
||||
|
|
||||
|
public void setSubclass(String subclass) { |
||||
|
this.subclass = subclass; |
||||
|
} |
||||
|
|
||||
|
public String getNumber() { |
||||
|
return number; |
||||
|
} |
||||
|
|
||||
|
public void setNumber(String number) { |
||||
|
this.number = number; |
||||
|
} |
||||
|
|
||||
|
public String getRatio() { |
||||
|
return ratio; |
||||
|
} |
||||
|
|
||||
|
public void setRatio(String ratio) { |
||||
|
this.ratio = ratio; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this) |
||||
|
.append("subclass", subclass) |
||||
|
.append("number", number) |
||||
|
.append("ratio", ratio) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue