修改区域id类型

dongdingding
董丁丁 2 years ago
parent 693ddc30f1
commit 928106c431

@ -1,5 +1,6 @@
package com.ruoyi.zongzhi.domain; package com.ruoyi.zongzhi.domain;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.annotation.Excel;
@ -8,76 +9,38 @@ import com.ruoyi.common.core.domain.BaseEntity;
/** /**
* () tc_bjsj * () tc_bjsj
* *
* @author ruoyi * @author ruoyi
* @date 2023-08-28 * @date 2023-08-28
*/ */
public class TcBjsj extends BaseEntity @Data
{ public class TcBjsj extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** $column.columnComment */ /**
* $column.columnComment
*/
private Long id; private Long id;
/** 区域Id */ /**
* Id
*/
@Excel(name = "区域Id") @Excel(name = "区域Id")
@ApiModelProperty(value = "区域Id") @ApiModelProperty(value = "区域Id")
private Long areaId; private String areaId;
/** 占比名称 */ /**
*
*/
@Excel(name = "占比名称") @Excel(name = "占比名称")
@ApiModelProperty(value = "占比名称") @ApiModelProperty(value = "占比名称")
private String name; private String name;
/** 所占百分比 */ /**
*
*/
@Excel(name = "所占百分比") @Excel(name = "所占百分比")
@ApiModelProperty(value = "所占百分比") @ApiModelProperty(value = "所占百分比")
private String percent; private String percent;
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 setName(String name)
{
this.name = name;
}
public String getName()
{
return name;
}
public void setPercent(String percent)
{
this.percent = percent;
}
public String getPercent()
{
return percent;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("areaId", getAreaId())
.append("name", getName())
.append("percent", getPercent())
.toString();
}
} }

@ -27,7 +27,7 @@ public class TcCommentator extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -27,7 +27,7 @@ public class TcDataSource extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* 1. * 1.

@ -30,7 +30,7 @@ public class TcDengbaoSystem extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -27,7 +27,7 @@ public class TcDengbaoUnit extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -1,5 +1,6 @@
package com.ruoyi.zongzhi.domain; package com.ruoyi.zongzhi.domain;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.annotation.Excel;
@ -8,106 +9,52 @@ import com.ruoyi.common.core.domain.BaseEntity;
/** /**
* tc_dt_sx * tc_dt_sx
* *
* @author ruoyi * @author ruoyi
* @date 2023-08-28 * @date 2023-08-28
*/ */
public class TcDtSx extends BaseEntity @Data
{ public class TcDtSx extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** $column.columnComment */ /**
* $column.columnComment
*/
private Long id; private Long id;
/** 区域id */ /**
* id
*/
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** 监测信息总数 */ /**
*
*/
@Excel(name = "监测信息总数") @Excel(name = "监测信息总数")
@ApiModelProperty(value = "监测信息总数") @ApiModelProperty(value = "监测信息总数")
private Long jcxxCount; private Long jcxxCount;
/** 排除信息总数 */ /**
*
*/
@Excel(name = "排除信息总数") @Excel(name = "排除信息总数")
@ApiModelProperty(value = "排除信息总数") @ApiModelProperty(value = "排除信息总数")
private Long pcxxCount; private Long pcxxCount;
/** 舆情预警总数 */ /**
*
*/
@Excel(name = "舆情预警总数") @Excel(name = "舆情预警总数")
@ApiModelProperty(value = "舆情预警总数") @ApiModelProperty(value = "舆情预警总数")
private Long yqyjCount; private Long yqyjCount;
/** 舆情预警占比 */ /**
*
*/
@Excel(name = "舆情预警占比") @Excel(name = "舆情预警占比")
@ApiModelProperty(value = "舆情预警占比") @ApiModelProperty(value = "舆情预警占比")
private Long yqyjZb; private Long yqyjZb;
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 setJcxxCount(Long jcxxCount)
{
this.jcxxCount = jcxxCount;
}
public Long getJcxxCount()
{
return jcxxCount;
}
public void setPcxxCount(Long pcxxCount)
{
this.pcxxCount = pcxxCount;
}
public Long getPcxxCount()
{
return pcxxCount;
}
public void setYqyjCount(Long yqyjCount)
{
this.yqyjCount = yqyjCount;
}
public Long getYqyjCount()
{
return yqyjCount;
}
public void setYqyjZb(Long yqyjZb)
{
this.yqyjZb = yqyjZb;
}
public Long getYqyjZb()
{
return yqyjZb;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("areaId", getAreaId())
.append("jcxxCount", getJcxxCount())
.append("pcxxCount", getPcxxCount())
.append("yqyjCount", getYqyjCount())
.append("yqyjZb", getYqyjZb())
.toString();
}
} }

@ -27,7 +27,7 @@ public class TcExtworkSafetyadmin extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *
@ -106,131 +106,4 @@ public class TcExtworkSafetyadmin extends BaseEntity {
@ApiModelProperty(value = "修改人ID") @ApiModelProperty(value = "修改人ID")
private Long updateId; private Long updateId;
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 setUnit(String unit) {
this.unit = unit;
}
public String getUnit() {
return unit;
}
public void setFirstPrincipal(String firstPrincipal) {
this.firstPrincipal = firstPrincipal;
}
public String getFirstPrincipal() {
return firstPrincipal;
}
public void setDuty(String duty) {
this.duty = duty;
}
public String getDuty() {
return duty;
}
public void setDirectPrincipal(String directPrincipal) {
this.directPrincipal = directPrincipal;
}
public String getDirectPrincipal() {
return directPrincipal;
}
public void setDuty1(String duty1) {
this.duty1 = duty1;
}
public String getDuty1() {
return duty1;
}
public void setFuzeKeshi(String fuzeKeshi) {
this.fuzeKeshi = fuzeKeshi;
}
public String getFuzeKeshi() {
return fuzeKeshi;
}
public void setNetworkAqg(String networkAqg) {
this.networkAqg = networkAqg;
}
public String getNetworkAqg() {
return networkAqg;
}
public void setDuty2(String duty2) {
this.duty2 = duty2;
}
public String getDuty2() {
return duty2;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getTel() {
return tel;
}
public void setCreateId(Long createId) {
this.createId = createId;
}
public Long getCreateId() {
return createId;
}
public void setUpdateId(Long updateId) {
this.updateId = updateId;
}
public Long getUpdateId() {
return updateId;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("areaId", getAreaId())
.append("unit", getUnit())
.append("firstPrincipal", getFirstPrincipal())
.append("duty", getDuty())
.append("directPrincipal", getDirectPrincipal())
.append("duty1", getDuty1())
.append("fuzeKeshi", getFuzeKeshi())
.append("networkAqg", getNetworkAqg())
.append("duty2", getDuty2())
.append("tel", getTel())
.append("createId", getCreateId())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateId", getUpdateId())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.toString();
}
} }

@ -27,7 +27,7 @@ public class TcGovernmentWeb extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -27,7 +27,7 @@ public class TcIdcUnit extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -31,7 +31,7 @@ public class TcNetworkArticle extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* 1. * 1.

@ -31,7 +31,7 @@ public class TcNetworkEvaluate extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* ID * ID

@ -27,7 +27,7 @@ public class TcNetworkMqPrincipal extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -27,7 +27,7 @@ public class TcNetworkPingtai extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* 1. * 1.

@ -30,7 +30,7 @@ public class TcNetworkReport extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -30,7 +30,7 @@ public class TcNetworkSentiment extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -27,7 +27,7 @@ public class TcNetworkSupportUnit extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -27,7 +27,7 @@ public class TcNetworkVolunteer extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* 1. * 1.

@ -30,7 +30,7 @@ public class TcQinglangZhuanxiang extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -1,7 +1,9 @@
package com.ruoyi.zongzhi.domain; package com.ruoyi.zongzhi.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.annotation.Excel;
@ -10,91 +12,45 @@ import com.ruoyi.common.core.domain.BaseEntity;
/** /**
* tc_qlzxxdsj * tc_qlzxxdsj
* *
* @author ruoyi * @author ruoyi
* @date 2023-08-28 * @date 2023-08-28
*/ */
public class TcQlzxxdsj extends BaseEntity @Data
{ public class TcQlzxxdsj extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** $column.columnComment */ /**
* $column.columnComment
*/
private Long id; private Long id;
/** 区域id */ /**
* id
*/
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** 类型 */ /**
*
*/
@Excel(name = "类型") @Excel(name = "类型")
@ApiModelProperty(value = "类型") @ApiModelProperty(value = "类型")
private Long type; private Long type;
/** 年月 */ /**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "年月", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "年月", width = 30, dateFormat = "yyyy-MM-dd")
private Date yearMonth; private Date yearMonth;
/** 数量 */ /**
*
*/
@Excel(name = "数量") @Excel(name = "数量")
@ApiModelProperty(value = "数量") @ApiModelProperty(value = "数量")
private Long count; private Long count;
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 setType(Long type)
{
this.type = type;
}
public Long getType()
{
return type;
}
public void setYearMonth(Date yearMonth)
{
this.yearMonth = yearMonth;
}
public Date getYearMonth()
{
return yearMonth;
}
public void setCount(Long count)
{
this.count = count;
}
public Long getCount()
{
return count;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("areaId", getAreaId())
.append("type", getType())
.append("yearMonth", getYearMonth())
.append("count", getCount())
.toString();
}
} }

@ -30,7 +30,7 @@ public class TcSafetyDanger extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* 1. * 1.

@ -31,7 +31,7 @@ public class TcSafetyDetection extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -30,7 +30,7 @@ public class TcTb extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -30,7 +30,7 @@ public class TcWorkDongtai extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

@ -1,5 +1,6 @@
package com.ruoyi.zongzhi.domain; package com.ruoyi.zongzhi.domain;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.annotation.Excel;
@ -8,61 +9,29 @@ import com.ruoyi.common.core.domain.BaseEntity;
/** /**
* tc_wpyrwwcl * tc_wpyrwwcl
* *
* @author ruoyi * @author ruoyi
* @date 2023-08-28 * @date 2023-08-28
*/ */
public class TcWpyrwwcl extends BaseEntity @Data
{ public class TcWpyrwwcl extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** $column.columnComment */ /**
* $column.columnComment
*/
private Long id; private Long id;
/** $column.columnComment */ /**
@ApiModelProperty(value = "${comment}") * id
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") */
@ApiModelProperty(value = "区域id")
private Long areaId; private Long areaId;
/** $column.columnComment */ /**
@ApiModelProperty(value = "${comment}") *
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") */
@ApiModelProperty(value = "完成数")
private Long finish; private Long finish;
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 setFinish(Long finish)
{
this.finish = finish;
}
public Long getFinish()
{
return finish;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("areaId", getAreaId())
.append("finish", getFinish())
.toString();
}
} }

@ -1,113 +1,60 @@
package com.ruoyi.zongzhi.domain; 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 com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import com.ruoyi.common.core.domain.BaseEntity; 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 * tc_yq_fl
* *
* @author ruoyi * @author ruoyi
* @date 2023-08-28 * @date 2023-08-28
*/ */
public class TcYqFl extends BaseEntity @Data
{ public class TcYqFl extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** $column.columnComment */ /**
* $column.columnComment
*/
private Long id; private Long id;
/** 区域id */ /**
* id
*/
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** 媒体类型 */ /**
*
*/
@Excel(name = "媒体类型") @Excel(name = "媒体类型")
@ApiModelProperty(value = "媒体类型") @ApiModelProperty(value = "媒体类型")
private Long mediaType; private Long mediaType;
/** 涉事类型 */ /**
*
*/
@Excel(name = "涉事类型") @Excel(name = "涉事类型")
@ApiModelProperty(value = "涉事类型") @ApiModelProperty(value = "涉事类型")
private Long eventType; private Long eventType;
/** 媒体数据 */ /**
*
*/
@Excel(name = "媒体数据") @Excel(name = "媒体数据")
@ApiModelProperty(value = "媒体数据") @ApiModelProperty(value = "媒体数据")
private String mediaCount; private String mediaCount;
/** 涉事数量 */ /**
*
*/
@Excel(name = "涉事数量") @Excel(name = "涉事数量")
@ApiModelProperty(value = "涉事数量") @ApiModelProperty(value = "涉事数量")
private String eventCount; 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();
}
} }

@ -1,7 +1,9 @@
package com.ruoyi.zongzhi.domain; package com.ruoyi.zongzhi.domain;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.annotation.Excel;
@ -10,91 +12,45 @@ import com.ruoyi.common.core.domain.BaseEntity;
/** /**
* tc_yq_zs * tc_yq_zs
* *
* @author ruoyi * @author ruoyi
* @date 2023-08-28 * @date 2023-08-28
*/ */
public class TcYqZs extends BaseEntity @Data
{ public class TcYqZs extends BaseEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** $column.columnComment */ /**
* $column.columnComment
*/
private Long id; private Long id;
/** 区域id */ /**
* id
*/
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** 类型 */ /**
*
*/
@Excel(name = "类型") @Excel(name = "类型")
@ApiModelProperty(value = "类型") @ApiModelProperty(value = "类型")
private Long type; private Long type;
/** 日期 */ /**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
private Date dateTime; private Date dateTime;
/** 数量 */ /**
*
*/
@Excel(name = "数量") @Excel(name = "数量")
@ApiModelProperty(value = "数量") @ApiModelProperty(value = "数量")
private Long count; private Long count;
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 setType(Long type)
{
this.type = type;
}
public Long getType()
{
return type;
}
public void setDateTime(Date dateTime)
{
this.dateTime = dateTime;
}
public Date getDateTime()
{
return dateTime;
}
public void setCount(Long count)
{
this.count = count;
}
public Long getCount()
{
return count;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("areaId", getAreaId())
.append("type", getType())
.append("dateTime", getDateTime())
.append("count", getCount())
.toString();
}
} }

@ -24,7 +24,7 @@ public class TcZhongdianDomain extends BaseEntity
/** 区域id */ /** 区域id */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** 企业类型 */ /** 企业类型 */
@Excel(name = "企业类型") @Excel(name = "企业类型")

@ -24,7 +24,7 @@ public class TcZhongdianEnterprise extends BaseEntity
/** 区域id */ /** 区域id */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** 企业名称 */ /** 企业名称 */
@Excel(name = "企业名称") @Excel(name = "企业名称")

@ -27,7 +27,7 @@ public class TcZhongdianWork extends BaseEntity {
*/ */
@Excel(name = "区域id") @Excel(name = "区域id")
@ApiModelProperty(value = "区域id") @ApiModelProperty(value = "区域id")
private Long areaId; private String areaId;
/** /**
* *

Loading…
Cancel
Save