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.
|
|
|
package com.ruoyi.tcZz.domain;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
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.ToStringStyle;
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 舆情走势图对象 tc_yqzs
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2023-10-12
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@ApiModel("舆情走势图对象")
|
|
|
|
public class TcYqzs extends BaseEntity
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
@ApiModelProperty(value = "id")
|
|
|
|
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;
|
|
|
|
}
|