parent
693ddc30f1
commit
928106c431
@ -1,113 +1,60 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
/**
|
||||
* 舆情分类对象 tc_yq_fl
|
||||
*
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-28
|
||||
*/
|
||||
public class TcYqFl extends BaseEntity
|
||||
{
|
||||
@Data
|
||||
public class TcYqFl extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** $column.columnComment */
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/** 区域id */
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private String areaId;
|
||||
|
||||
/** 媒体类型 */
|
||||
/**
|
||||
* 媒体类型
|
||||
*/
|
||||
@Excel(name = "媒体类型")
|
||||
@ApiModelProperty(value = "媒体类型")
|
||||
@ApiModelProperty(value = "媒体类型")
|
||||
private Long mediaType;
|
||||
|
||||
/** 涉事类型 */
|
||||
/**
|
||||
* 涉事类型
|
||||
*/
|
||||
@Excel(name = "涉事类型")
|
||||
@ApiModelProperty(value = "涉事类型")
|
||||
@ApiModelProperty(value = "涉事类型")
|
||||
private Long eventType;
|
||||
|
||||
/** 媒体数据 */
|
||||
/**
|
||||
* 媒体数据
|
||||
*/
|
||||
@Excel(name = "媒体数据")
|
||||
@ApiModelProperty(value = "媒体数据")
|
||||
@ApiModelProperty(value = "媒体数据")
|
||||
private String mediaCount;
|
||||
|
||||
/** 涉事数量 */
|
||||
/**
|
||||
* 涉事数量
|
||||
*/
|
||||
@Excel(name = "涉事数量")
|
||||
@ApiModelProperty(value = "涉事数量")
|
||||
@ApiModelProperty(value = "涉事数量")
|
||||
private String eventCount;
|
||||
|
||||
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 setMediaType(Long mediaType)
|
||||
{
|
||||
this.mediaType = mediaType;
|
||||
}
|
||||
|
||||
public Long getMediaType()
|
||||
{
|
||||
return mediaType;
|
||||
}
|
||||
public void setEventType(Long eventType)
|
||||
{
|
||||
this.eventType = eventType;
|
||||
}
|
||||
|
||||
public Long getEventType()
|
||||
{
|
||||
return eventType;
|
||||
}
|
||||
public void setMediaCount(String mediaCount)
|
||||
{
|
||||
this.mediaCount = mediaCount;
|
||||
}
|
||||
|
||||
public String getMediaCount()
|
||||
{
|
||||
return mediaCount;
|
||||
}
|
||||
public void setEventCount(String eventCount)
|
||||
{
|
||||
this.eventCount = eventCount;
|
||||
}
|
||||
|
||||
public String getEventCount()
|
||||
{
|
||||
return eventCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("areaId", getAreaId())
|
||||
.append("mediaType", getMediaType())
|
||||
.append("eventType", getEventType())
|
||||
.append("mediaCount", getMediaCount())
|
||||
.append("eventCount", getEventCount())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue