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.
102 lines
2.2 KiB
102 lines
2.2 KiB
2 years ago
|
package com.ruoyi.tcZz.domain;
|
||
|
|
||
|
import java.util.Date;
|
||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
|
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_yqzs
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2023-10-12
|
||
|
*/
|
||
|
public class TcYqzs extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
private Long id;
|
||
|
|
||
|
/** 区域id */
|
||
|
@Excel(name = "区域id")
|
||
|
private Long areaId;
|
||
|
|
||
|
/** 日期 */
|
||
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||
|
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||
|
private Date dateTime;
|
||
|
|
||
|
/** 非敏感数量 */
|
||
|
@Excel(name = "非敏感数量")
|
||
|
private Long count1;
|
||
|
|
||
|
/** 敏感数量 */
|
||
|
@Excel(name = "敏感数量")
|
||
|
private Long count2;
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setAreaId(Long areaId)
|
||
|
{
|
||
|
this.areaId = areaId;
|
||
|
}
|
||
|
|
||
|
public Long getAreaId()
|
||
|
{
|
||
|
return areaId;
|
||
|
}
|
||
|
public void setDateTime(Date dateTime)
|
||
|
{
|
||
|
this.dateTime = dateTime;
|
||
|
}
|
||
|
|
||
|
public Date getDateTime()
|
||
|
{
|
||
|
return dateTime;
|
||
|
}
|
||
|
public void setCount1(Long count1)
|
||
|
{
|
||
|
this.count1 = count1;
|
||
|
}
|
||
|
|
||
|
public Long getCount1()
|
||
|
{
|
||
|
return count1;
|
||
|
}
|
||
|
public void setCount2(Long count2)
|
||
|
{
|
||
|
this.count2 = count2;
|
||
|
}
|
||
|
|
||
|
public Long getCount2()
|
||
|
{
|
||
|
return count2;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("areaId", getAreaId())
|
||
|
.append("dateTime", getDateTime())
|
||
|
.append("createBy", getCreateBy())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.append("updateBy", getUpdateBy())
|
||
|
.append("updateTime", getUpdateTime())
|
||
|
.append("remark", getRemark())
|
||
|
.append("count1", getCount1())
|
||
|
.append("count2", getCount2())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|