Merge branch 'duhanyu' of http://39.101.188.84:8000/suzhou-jichuang-lanhai/tcZz-java
commit
5d63922d38
@ -1,98 +1,46 @@
|
|||||||
package com.ruoyi.tcZz.domain;
|
package com.ruoyi.tcZz.domain;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.annotation.Excel;
|
||||||
import com.ruoyi.common.core.domain.BaseEntity;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 数据来源统计tc_sjlytj 对象 tc_sjlytj
|
* 数据来源统计对象 tc_sjlytj
|
||||||
*
|
*
|
||||||
* @author ruoyi
|
* @author ruoyi
|
||||||
* @date 2023-10-12
|
* @date 2023-10-13
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("数据来源统计对象")
|
||||||
public class TcSjlytj extends BaseEntity
|
public class TcSjlytj extends BaseEntity
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** $column.columnComment */
|
/** $column.columnComment */
|
||||||
|
@ApiModelProperty(value = "id")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** 云端监测(G) */
|
/** 云端监测(G) */
|
||||||
|
@ApiModelProperty(value = "云端监测(G)")
|
||||||
@Excel(name = "云端监测(G)")
|
@Excel(name = "云端监测(G)")
|
||||||
private String lable1;
|
private String lable1;
|
||||||
|
|
||||||
/** 云端监测(G)总量 */
|
/** 云端监测(G)总量 */
|
||||||
|
@ApiModelProperty(value = "云端监测(G)总量")
|
||||||
@Excel(name = "云端监测(G)总量")
|
@Excel(name = "云端监测(G)总量")
|
||||||
private String lable1Sum;
|
private String lable1Sum;
|
||||||
|
|
||||||
/** APT(M) */
|
/** APT(M) */
|
||||||
|
@ApiModelProperty(value = "APT(M)")
|
||||||
@Excel(name = "APT(M)")
|
@Excel(name = "APT(M)")
|
||||||
private String lable2;
|
private String lable2;
|
||||||
|
|
||||||
/** APT(M) 总量 */
|
/** APT(M) 总量 */
|
||||||
|
@ApiModelProperty(value = "APT(M) 总量")
|
||||||
@Excel(name = "APT(M) 总量")
|
@Excel(name = "APT(M) 总量")
|
||||||
private String lable2Sum;
|
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();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue