|
|
|
@ -3,6 +3,7 @@ package com.ruoyi.zongzhi.domain;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
@ -12,6 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
* @date 2023-09-13
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
public class TcSgjTj extends BaseEntity {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
@ -62,95 +64,12 @@ public class TcSgjTj extends BaseEntity {
|
|
|
|
|
*/
|
|
|
|
|
private Long updateId;
|
|
|
|
|
|
|
|
|
|
public void setId(Long id) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getId() {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTownId(Long townId) {
|
|
|
|
|
this.townId = townId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getTownId() {
|
|
|
|
|
return townId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setVillageId(Long villageId) {
|
|
|
|
|
this.villageId = villageId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getVillageId() {
|
|
|
|
|
return villageId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTotalSum(Long totalSum) {
|
|
|
|
|
this.totalSum = totalSum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getTotalSum() {
|
|
|
|
|
return totalSum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRqSum(Long rqSum) {
|
|
|
|
|
this.rqSum = rqSum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getRqSum() {
|
|
|
|
|
return rqSum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setEySum(Long eySum) {
|
|
|
|
|
this.eySum = eySum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getEySum() {
|
|
|
|
|
return eySum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setJmrSum(Long jmrSum) {
|
|
|
|
|
this.jmrSum = jmrSum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getJmrSum() {
|
|
|
|
|
return jmrSum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 使用状态
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "0:禁用,1:启用")
|
|
|
|
|
@ApiModelProperty(value = "0:禁用,1:启用")
|
|
|
|
|
private Boolean isStatus ;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
.append("townId", getTownId())
|
|
|
|
|
.append("villageId", getVillageId())
|
|
|
|
|
.append("totalSum", getTotalSum())
|
|
|
|
|
.append("rqSum", getRqSum())
|
|
|
|
|
.append("eySum", getEySum())
|
|
|
|
|
.append("jmrSum", getJmrSum())
|
|
|
|
|
.append("createId", getCreateId())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateId", getUpdateId())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.append("remark", getRemark())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|