|
|
|
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;
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 舆情走势图对象 tc_yqzs
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2023-10-13
|
|
|
|
*/
|
|
|
|
@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",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城",combo = "太仓市,城厢镇,沙溪镇,浏河镇,浮桥镇,璜泾镇,双凤镇,娄东街道,陆渡街道,科教新城")
|
|
|
|
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城")
|
|
|
|
private Long areaId;
|
|
|
|
|
|
|
|
/** 日期 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@ApiModelProperty(value = "日期")
|
|
|
|
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
private Date dateTime;
|
|
|
|
|
|
|
|
/** 非敏感数量 */
|
|
|
|
@Excel(name = "非敏感数量")
|
|
|
|
@ApiModelProperty(value = "非敏感数量")
|
|
|
|
private Long count1;
|
|
|
|
|
|
|
|
/** 敏感数量 */
|
|
|
|
@Excel(name = "敏感数量")
|
|
|
|
@ApiModelProperty(value = "敏感数量")
|
|
|
|
private Long count2;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 开始时间
|
|
|
|
*/
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@ApiModelProperty(value = "开始时间")
|
|
|
|
private Date beginDateTime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 结束时间
|
|
|
|
*/
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@ApiModelProperty(value = "结束时间")
|
|
|
|
private Date endDateTime;
|
|
|
|
}
|