You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.2 KiB
99 lines
2.2 KiB
2 years ago
|
package com.ruoyi.tcZz.domain;
|
||
|
|
||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
|
import com.ruoyi.common.annotation.Excel;
|
||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
||
|
/**
|
||
|
* 数据来源统计tc_sjlytj 对象 tc_sjlytj
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2023-10-12
|
||
|
*/
|
||
|
public class TcSjlytj extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
private Long id;
|
||
|
|
||
|
/** 云端监测(G) */
|
||
|
@Excel(name = "云端监测(G)")
|
||
|
private String lable1;
|
||
|
|
||
|
/** 云端监测(G)总量 */
|
||
|
@Excel(name = "云端监测(G)总量")
|
||
|
private String lable1Sum;
|
||
|
|
||
|
/** APT(M) */
|
||
|
@Excel(name = "APT(M)")
|
||
|
private String lable2;
|
||
|
|
||
|
/** APT(M) 总量 */
|
||
|
@Excel(name = "APT(M) 总量")
|
||
|
private String lable2Sum;
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setLable1(String lable1)
|
||
|
{
|
||
|
this.lable1 = lable1;
|
||
|
}
|
||
|
|
||
|
public String getLable1()
|
||
|
{
|
||
|
return lable1;
|
||
|
}
|
||
|
public void setLable1Sum(String lable1Sum)
|
||
|
{
|
||
|
this.lable1Sum = lable1Sum;
|
||
|
}
|
||
|
|
||
|
public String getLable1Sum()
|
||
|
{
|
||
|
return lable1Sum;
|
||
|
}
|
||
|
public void setLable2(String lable2)
|
||
|
{
|
||
|
this.lable2 = lable2;
|
||
|
}
|
||
|
|
||
|
public String getLable2()
|
||
|
{
|
||
|
return lable2;
|
||
|
}
|
||
|
public void setLable2Sum(String lable2Sum)
|
||
|
{
|
||
|
this.lable2Sum = lable2Sum;
|
||
|
}
|
||
|
|
||
|
public String getLable2Sum()
|
||
|
{
|
||
|
return lable2Sum;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("lable1", getLable1())
|
||
|
.append("lable1Sum", getLable1Sum())
|
||
|
.append("lable2", getLable2())
|
||
|
.append("lable2Sum", getLable2Sum())
|
||
|
.append("createBy", getCreateBy())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.append("updateBy", getUpdateBy())
|
||
|
.append("updateTime", getUpdateTime())
|
||
|
.append("remark", getRemark())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|