|
|
|
@ -1,12 +1,10 @@
|
|
|
|
|
package com.ruoyi.tcZz.domain;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
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_cy
|
|
|
|
@ -24,6 +22,12 @@ public class TcCy extends BaseEntity
|
|
|
|
|
@ApiModelProperty(value = "id")
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
/** 区域id */
|
|
|
|
|
////,readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城",combo = "太仓市,城厢镇,沙溪镇,浏河镇,浮桥镇,璜泾镇,双凤镇,娄东街道,陆渡街道,科教新城
|
|
|
|
|
@Excel(name = "乡镇名称",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城",combo = "太仓市,城厢镇,沙溪镇,浏河镇,浮桥镇,璜泾镇,双凤镇,娄东街道,陆渡街道,科教新城")
|
|
|
|
|
@ApiModelProperty(value = "乡镇名称,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城")
|
|
|
|
|
private String areaId;
|
|
|
|
|
|
|
|
|
|
/** 词云名称 */
|
|
|
|
|
@Excel(name = "词云名称")
|
|
|
|
|
@ApiModelProperty(value = "词云名称")
|
|
|
|
@ -34,9 +38,5 @@ public class TcCy extends BaseEntity
|
|
|
|
|
@ApiModelProperty(value = "词云数量")
|
|
|
|
|
private Long cyCount;
|
|
|
|
|
|
|
|
|
|
/** 区域id */
|
|
|
|
|
////,readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城",combo = "太仓市,城厢镇,沙溪镇,浏河镇,浮桥镇,璜泾镇,双凤镇,娄东街道,陆渡街道,科教新城
|
|
|
|
|
@Excel(name = "区域id")
|
|
|
|
|
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道,10=科教新城")
|
|
|
|
|
private String areaId;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|