|
@@ -9,7 +9,7 @@ import com.enteprise.common.core.domain.BaseEntity;
|
|
* score对象 score
|
|
* score对象 score
|
|
*
|
|
*
|
|
* @author ruoyi
|
|
* @author ruoyi
|
|
- * @date 2024-11-13
|
|
|
|
|
|
+ * @date 2024-08-30
|
|
*/
|
|
*/
|
|
public class Score extends BaseEntity
|
|
public class Score extends BaseEntity
|
|
{
|
|
{
|
|
@@ -36,80 +36,67 @@ public class Score extends BaseEntity
|
|
|
|
|
|
/** 用地面积得分 */
|
|
/** 用地面积得分 */
|
|
@Excel(name = "用地面积得分")
|
|
@Excel(name = "用地面积得分")
|
|
- private Long landAreaScore;
|
|
|
|
|
|
+ private Double landAreaScore;
|
|
|
|
|
|
/** 工业总产值得分 */
|
|
/** 工业总产值得分 */
|
|
@Excel(name = "工业总产值得分")
|
|
@Excel(name = "工业总产值得分")
|
|
- private Long totalIndustrialValueScore;
|
|
|
|
|
|
+ private Double totalIndustrialValueScore;
|
|
|
|
|
|
/** 工业增加值得分 */
|
|
/** 工业增加值得分 */
|
|
@Excel(name = "工业增加值得分")
|
|
@Excel(name = "工业增加值得分")
|
|
- private Long gdpScore;
|
|
|
|
|
|
+ private Double gdpScore;
|
|
|
|
|
|
/** 应税收入得分 */
|
|
/** 应税收入得分 */
|
|
@Excel(name = "应税收入得分")
|
|
@Excel(name = "应税收入得分")
|
|
- private Long taxableIncomeScore;
|
|
|
|
|
|
+ private Double taxableIncomeScore;
|
|
|
|
|
|
/** 实缴税金得分 */
|
|
/** 实缴税金得分 */
|
|
@Excel(name = "实缴税金得分")
|
|
@Excel(name = "实缴税金得分")
|
|
- private Long paidTaxScore;
|
|
|
|
|
|
+ private Double paidTaxScore;
|
|
|
|
|
|
/** 主营业务收入得分 */
|
|
/** 主营业务收入得分 */
|
|
@Excel(name = "主营业务收入得分")
|
|
@Excel(name = "主营业务收入得分")
|
|
- private Long mainBusinessIncomeScore;
|
|
|
|
|
|
+ private Double mainBusinessIncomeScore;
|
|
|
|
|
|
/** 从业人员数得分 */
|
|
/** 从业人员数得分 */
|
|
@Excel(name = "从业人员数得分")
|
|
@Excel(name = "从业人员数得分")
|
|
- private Long employeeNumberScore;
|
|
|
|
|
|
+ private Double employeeNumberScore;
|
|
|
|
|
|
/** 利润总额得分 */
|
|
/** 利润总额得分 */
|
|
@Excel(name = "利润总额得分")
|
|
@Excel(name = "利润总额得分")
|
|
- private Long profitScore;
|
|
|
|
|
|
+ private Double profitScore;
|
|
|
|
|
|
/** 所有者权益得分 */
|
|
/** 所有者权益得分 */
|
|
@Excel(name = "所有者权益得分")
|
|
@Excel(name = "所有者权益得分")
|
|
- private Long ownerEquityScore;
|
|
|
|
|
|
+ private Double ownerEquityScore;
|
|
|
|
|
|
/** 研发经费得分 */
|
|
/** 研发经费得分 */
|
|
@Excel(name = "研发经费得分")
|
|
@Excel(name = "研发经费得分")
|
|
- private Long fundingScore;
|
|
|
|
-
|
|
|
|
- /** 电力消费得分 */
|
|
|
|
- @Excel(name = "电力消费得分")
|
|
|
|
- private Long powerConsumeScore;
|
|
|
|
|
|
+ private Double fundingScore;
|
|
|
|
|
|
/** 能源消费量得分 */
|
|
/** 能源消费量得分 */
|
|
@Excel(name = "能源消费量得分")
|
|
@Excel(name = "能源消费量得分")
|
|
- private Long energyConsumeScore;
|
|
|
|
|
|
+ private Double energyConsumeScore;
|
|
|
|
|
|
- /** 工业总产值得分 */
|
|
|
|
- @Excel(name = "工业总产值得分")
|
|
|
|
- private Long totalIndustrialValuePrecent;
|
|
|
|
-
|
|
|
|
- /** 应税收入得分 */
|
|
|
|
- @Excel(name = "应税收入得分")
|
|
|
|
- private Long taxableIncomePrecent;
|
|
|
|
-
|
|
|
|
- /** 实缴税金得分 */
|
|
|
|
- @Excel(name = "实缴税金得分")
|
|
|
|
- private Long paidTaxPrecent;
|
|
|
|
|
|
+ @Excel(name = "电力消费量得分")
|
|
|
|
+ private Double powerConsumeScore;
|
|
|
|
|
|
- /** 研发经费得分 */
|
|
|
|
- @Excel(name = "研发经费得分")
|
|
|
|
- private Long fundingPrecent;
|
|
|
|
-
|
|
|
|
- /** 电力消费得分 */
|
|
|
|
- @Excel(name = "电力消费得分")
|
|
|
|
- private Long powerConsumePrecent;
|
|
|
|
|
|
+ /** 年份 */
|
|
|
|
+ @Excel(name = "年份")
|
|
|
|
+ private String year;
|
|
|
|
|
|
- /** 能源消费量得分 */
|
|
|
|
- @Excel(name = "能源消费量得分")
|
|
|
|
- private Long energyConsumePrecent;
|
|
|
|
|
|
+ /** 月份 */
|
|
|
|
+ @Excel(name = "月份")
|
|
|
|
+ private String month;
|
|
|
|
|
|
/** 主营业务活动得分 */
|
|
/** 主营业务活动得分 */
|
|
@Excel(name = "主营业务活动得分")
|
|
@Excel(name = "主营业务活动得分")
|
|
private String totalIndustrialValueLevel;
|
|
private String totalIndustrialValueLevel;
|
|
|
|
|
|
|
|
+ public String getTotalIndustrialValueLevel() {
|
|
|
|
+ return totalIndustrialValueLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
/** 主营业务活动得分 */
|
|
/** 主营业务活动得分 */
|
|
@Excel(name = "主营业务活动得分")
|
|
@Excel(name = "主营业务活动得分")
|
|
private String taxableIncomeLevel;
|
|
private String taxableIncomeLevel;
|
|
@@ -130,13 +117,49 @@ public class Score extends BaseEntity
|
|
@Excel(name = "主营业务活动得分")
|
|
@Excel(name = "主营业务活动得分")
|
|
private String powerConsumeLevel;
|
|
private String powerConsumeLevel;
|
|
|
|
|
|
- /** 年份 */
|
|
|
|
- @Excel(name = "年份")
|
|
|
|
- private String year;
|
|
|
|
|
|
+ public String getPaidTaxLevel() {
|
|
|
|
+ return paidTaxLevel;
|
|
|
|
+ }
|
|
|
|
|
|
- /** 月份 */
|
|
|
|
- @Excel(name = "月份")
|
|
|
|
- private String month;
|
|
|
|
|
|
+ public void setPaidTaxLevel(String paidTaxLevel) {
|
|
|
|
+ this.paidTaxLevel = paidTaxLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getEnergyConsumeLevel() {
|
|
|
|
+ return energyConsumeLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEnergyConsumeLevel(String energyConsumeLevel) {
|
|
|
|
+ this.energyConsumeLevel = energyConsumeLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getFundingLevel() {
|
|
|
|
+ return fundingLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setFundingLevel(String fundingLevel) {
|
|
|
|
+ this.fundingLevel = fundingLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getPowerConsumeLevel() {
|
|
|
|
+ return powerConsumeLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPowerConsumeLevel(String powerConsumeLevel) {
|
|
|
|
+ this.powerConsumeLevel = powerConsumeLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getTaxableIncomeLevel() {
|
|
|
|
+ return taxableIncomeLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTaxableIncomeLevel(String taxableIncomeLevel) {
|
|
|
|
+ this.taxableIncomeLevel = taxableIncomeLevel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTotalIndustrialValueLevel(String totalIndustrialValueLevel) {
|
|
|
|
+ this.totalIndustrialValueLevel = totalIndustrialValueLevel;
|
|
|
|
+ }
|
|
|
|
|
|
public void setId(Long id)
|
|
public void setId(Long id)
|
|
{
|
|
{
|
|
@@ -156,6 +179,7 @@ public class Score extends BaseEntity
|
|
{
|
|
{
|
|
return enterpriseName;
|
|
return enterpriseName;
|
|
}
|
|
}
|
|
|
|
+
|
|
public void setLocation(String location)
|
|
public void setLocation(String location)
|
|
{
|
|
{
|
|
this.location = location;
|
|
this.location = location;
|
|
@@ -183,221 +207,114 @@ public class Score extends BaseEntity
|
|
{
|
|
{
|
|
return mainBusinessScore;
|
|
return mainBusinessScore;
|
|
}
|
|
}
|
|
- public void setLandAreaScore(Long landAreaScore)
|
|
|
|
|
|
+ public void setLandAreaScore(Double landAreaScore)
|
|
{
|
|
{
|
|
this.landAreaScore = landAreaScore;
|
|
this.landAreaScore = landAreaScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getLandAreaScore()
|
|
|
|
|
|
+ public Double getLandAreaScore()
|
|
{
|
|
{
|
|
return landAreaScore;
|
|
return landAreaScore;
|
|
}
|
|
}
|
|
- public void setTotalIndustrialValueScore(Long totalIndustrialValueScore)
|
|
|
|
|
|
+ public void setTotalIndustrialValueScore(Double totalIndustrialValueScore)
|
|
{
|
|
{
|
|
this.totalIndustrialValueScore = totalIndustrialValueScore;
|
|
this.totalIndustrialValueScore = totalIndustrialValueScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getTotalIndustrialValueScore()
|
|
|
|
|
|
+ public Double getTotalIndustrialValueScore()
|
|
{
|
|
{
|
|
return totalIndustrialValueScore;
|
|
return totalIndustrialValueScore;
|
|
}
|
|
}
|
|
- public void setGdpScore(Long gdpScore)
|
|
|
|
|
|
+ public void setGdpScore(Double gdpScore)
|
|
{
|
|
{
|
|
this.gdpScore = gdpScore;
|
|
this.gdpScore = gdpScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getGdpScore()
|
|
|
|
|
|
+ public Double getGdpScore()
|
|
{
|
|
{
|
|
return gdpScore;
|
|
return gdpScore;
|
|
}
|
|
}
|
|
- public void setTaxableIncomeScore(Long taxableIncomeScore)
|
|
|
|
|
|
+ public void setTaxableIncomeScore(Double taxableIncomeScore)
|
|
{
|
|
{
|
|
this.taxableIncomeScore = taxableIncomeScore;
|
|
this.taxableIncomeScore = taxableIncomeScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getTaxableIncomeScore()
|
|
|
|
|
|
+ public Double getTaxableIncomeScore()
|
|
{
|
|
{
|
|
return taxableIncomeScore;
|
|
return taxableIncomeScore;
|
|
}
|
|
}
|
|
- public void setPaidTaxScore(Long paidTaxScore)
|
|
|
|
|
|
+ public void setPaidTaxScore(Double paidTaxScore)
|
|
{
|
|
{
|
|
this.paidTaxScore = paidTaxScore;
|
|
this.paidTaxScore = paidTaxScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getPaidTaxScore()
|
|
|
|
|
|
+ public Double getPaidTaxScore()
|
|
{
|
|
{
|
|
return paidTaxScore;
|
|
return paidTaxScore;
|
|
}
|
|
}
|
|
- public void setMainBusinessIncomeScore(Long mainBusinessIncomeScore)
|
|
|
|
|
|
+ public void setMainBusinessIncomeScore(Double mainBusinessIncomeScore)
|
|
{
|
|
{
|
|
this.mainBusinessIncomeScore = mainBusinessIncomeScore;
|
|
this.mainBusinessIncomeScore = mainBusinessIncomeScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getMainBusinessIncomeScore()
|
|
|
|
|
|
+ public Double getMainBusinessIncomeScore()
|
|
{
|
|
{
|
|
return mainBusinessIncomeScore;
|
|
return mainBusinessIncomeScore;
|
|
}
|
|
}
|
|
- public void setEmployeeNumberScore(Long employeeNumberScore)
|
|
|
|
|
|
+ public void setEmployeeNumberScore(Double employeeNumberScore)
|
|
{
|
|
{
|
|
this.employeeNumberScore = employeeNumberScore;
|
|
this.employeeNumberScore = employeeNumberScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getEmployeeNumberScore()
|
|
|
|
|
|
+ public Double getEmployeeNumberScore()
|
|
{
|
|
{
|
|
return employeeNumberScore;
|
|
return employeeNumberScore;
|
|
}
|
|
}
|
|
- public void setProfitScore(Long profitScore)
|
|
|
|
|
|
+ public void setProfitScore(Double profitScore)
|
|
{
|
|
{
|
|
this.profitScore = profitScore;
|
|
this.profitScore = profitScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getProfitScore()
|
|
|
|
|
|
+ public Double getProfitScore()
|
|
{
|
|
{
|
|
return profitScore;
|
|
return profitScore;
|
|
}
|
|
}
|
|
- public void setOwnerEquityScore(Long ownerEquityScore)
|
|
|
|
|
|
+ public void setOwnerEquityScore(Double ownerEquityScore)
|
|
{
|
|
{
|
|
this.ownerEquityScore = ownerEquityScore;
|
|
this.ownerEquityScore = ownerEquityScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getOwnerEquityScore()
|
|
|
|
|
|
+ public Double getOwnerEquityScore()
|
|
{
|
|
{
|
|
return ownerEquityScore;
|
|
return ownerEquityScore;
|
|
}
|
|
}
|
|
- public void setFundingScore(Long fundingScore)
|
|
|
|
|
|
+ public void setFundingScore(Double fundingScore)
|
|
{
|
|
{
|
|
this.fundingScore = fundingScore;
|
|
this.fundingScore = fundingScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getFundingScore()
|
|
|
|
|
|
+ public Double getFundingScore()
|
|
{
|
|
{
|
|
return fundingScore;
|
|
return fundingScore;
|
|
}
|
|
}
|
|
- public void setPowerConsumeScore(Long powerConsumeScore)
|
|
|
|
- {
|
|
|
|
- this.powerConsumeScore = powerConsumeScore;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getPowerConsumeScore()
|
|
|
|
- {
|
|
|
|
- return powerConsumeScore;
|
|
|
|
- }
|
|
|
|
- public void setEnergyConsumeScore(Long energyConsumeScore)
|
|
|
|
|
|
+ public void setEnergyConsumeScore(Double energyConsumeScore)
|
|
{
|
|
{
|
|
this.energyConsumeScore = energyConsumeScore;
|
|
this.energyConsumeScore = energyConsumeScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getEnergyConsumeScore()
|
|
|
|
|
|
+ public Double getEnergyConsumeScore()
|
|
{
|
|
{
|
|
return energyConsumeScore;
|
|
return energyConsumeScore;
|
|
}
|
|
}
|
|
- public void setTotalIndustrialValuePrecent(Long totalIndustrialValuePrecent)
|
|
|
|
- {
|
|
|
|
- this.totalIndustrialValuePrecent = totalIndustrialValuePrecent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getTotalIndustrialValuePrecent()
|
|
|
|
- {
|
|
|
|
- return totalIndustrialValuePrecent;
|
|
|
|
- }
|
|
|
|
- public void setTaxableIncomePrecent(Long taxableIncomePrecent)
|
|
|
|
- {
|
|
|
|
- this.taxableIncomePrecent = taxableIncomePrecent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getTaxableIncomePrecent()
|
|
|
|
- {
|
|
|
|
- return taxableIncomePrecent;
|
|
|
|
- }
|
|
|
|
- public void setPaidTaxPrecent(Long paidTaxPrecent)
|
|
|
|
- {
|
|
|
|
- this.paidTaxPrecent = paidTaxPrecent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getPaidTaxPrecent()
|
|
|
|
- {
|
|
|
|
- return paidTaxPrecent;
|
|
|
|
- }
|
|
|
|
- public void setFundingPrecent(Long fundingPrecent)
|
|
|
|
- {
|
|
|
|
- this.fundingPrecent = fundingPrecent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getFundingPrecent()
|
|
|
|
- {
|
|
|
|
- return fundingPrecent;
|
|
|
|
- }
|
|
|
|
- public void setPowerConsumePrecent(Long powerConsumePrecent)
|
|
|
|
- {
|
|
|
|
- this.powerConsumePrecent = powerConsumePrecent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getPowerConsumePrecent()
|
|
|
|
- {
|
|
|
|
- return powerConsumePrecent;
|
|
|
|
- }
|
|
|
|
- public void setEnergyConsumePrecent(Long energyConsumePrecent)
|
|
|
|
- {
|
|
|
|
- this.energyConsumePrecent = energyConsumePrecent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getEnergyConsumePrecent()
|
|
|
|
- {
|
|
|
|
- return energyConsumePrecent;
|
|
|
|
- }
|
|
|
|
- public void setTotalIndustrialValueLevel(String totalIndustrialValueLevel)
|
|
|
|
- {
|
|
|
|
- this.totalIndustrialValueLevel = totalIndustrialValueLevel;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getTotalIndustrialValueLevel()
|
|
|
|
- {
|
|
|
|
- return totalIndustrialValueLevel;
|
|
|
|
- }
|
|
|
|
- public void setTaxableIncomeLevel(String taxableIncomeLevel)
|
|
|
|
- {
|
|
|
|
- this.taxableIncomeLevel = taxableIncomeLevel;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getTaxableIncomeLevel()
|
|
|
|
- {
|
|
|
|
- return taxableIncomeLevel;
|
|
|
|
- }
|
|
|
|
- public void setPaidTaxLevel(String paidTaxLevel)
|
|
|
|
- {
|
|
|
|
- this.paidTaxLevel = paidTaxLevel;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPaidTaxLevel()
|
|
|
|
- {
|
|
|
|
- return paidTaxLevel;
|
|
|
|
- }
|
|
|
|
- public void setEnergyConsumeLevel(String energyConsumeLevel)
|
|
|
|
- {
|
|
|
|
- this.energyConsumeLevel = energyConsumeLevel;
|
|
|
|
- }
|
|
|
|
|
|
|
|
- public String getEnergyConsumeLevel()
|
|
|
|
|
|
+ public void setPowerConsumeScore(Double powerConsumeScore)
|
|
{
|
|
{
|
|
- return energyConsumeLevel;
|
|
|
|
- }
|
|
|
|
- public void setFundingLevel(String fundingLevel)
|
|
|
|
- {
|
|
|
|
- this.fundingLevel = fundingLevel;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getFundingLevel()
|
|
|
|
- {
|
|
|
|
- return fundingLevel;
|
|
|
|
- }
|
|
|
|
- public void setPowerConsumeLevel(String powerConsumeLevel)
|
|
|
|
- {
|
|
|
|
- this.powerConsumeLevel = powerConsumeLevel;
|
|
|
|
|
|
+ this.powerConsumeScore = powerConsumeScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getPowerConsumeLevel()
|
|
|
|
|
|
+ public Double getPowerConsumeScore()
|
|
{
|
|
{
|
|
- return powerConsumeLevel;
|
|
|
|
|
|
+ return powerConsumeScore;
|
|
}
|
|
}
|
|
public void setYear(String year)
|
|
public void setYear(String year)
|
|
{
|
|
{
|
|
@@ -421,37 +338,24 @@ public class Score extends BaseEntity
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
- .append("id", getId())
|
|
|
|
- .append("enterpriseName", getEnterpriseName())
|
|
|
|
- .append("location", getLocation())
|
|
|
|
- .append("code", getCode())
|
|
|
|
- .append("mainBusinessScore", getMainBusinessScore())
|
|
|
|
- .append("landAreaScore", getLandAreaScore())
|
|
|
|
- .append("totalIndustrialValueScore", getTotalIndustrialValueScore())
|
|
|
|
- .append("gdpScore", getGdpScore())
|
|
|
|
- .append("taxableIncomeScore", getTaxableIncomeScore())
|
|
|
|
- .append("paidTaxScore", getPaidTaxScore())
|
|
|
|
- .append("mainBusinessIncomeScore", getMainBusinessIncomeScore())
|
|
|
|
- .append("employeeNumberScore", getEmployeeNumberScore())
|
|
|
|
- .append("profitScore", getProfitScore())
|
|
|
|
- .append("ownerEquityScore", getOwnerEquityScore())
|
|
|
|
- .append("fundingScore", getFundingScore())
|
|
|
|
- .append("powerConsumeScore", getPowerConsumeScore())
|
|
|
|
- .append("energyConsumeScore", getEnergyConsumeScore())
|
|
|
|
- .append("totalIndustrialValuePrecent", getTotalIndustrialValuePrecent())
|
|
|
|
- .append("taxableIncomePrecent", getTaxableIncomePrecent())
|
|
|
|
- .append("paidTaxPrecent", getPaidTaxPrecent())
|
|
|
|
- .append("fundingPrecent", getFundingPrecent())
|
|
|
|
- .append("powerConsumePrecent", getPowerConsumePrecent())
|
|
|
|
- .append("energyConsumePrecent", getEnergyConsumePrecent())
|
|
|
|
- .append("totalIndustrialValueLevel", getTotalIndustrialValueLevel())
|
|
|
|
- .append("taxableIncomeLevel", getTaxableIncomeLevel())
|
|
|
|
- .append("paidTaxLevel", getPaidTaxLevel())
|
|
|
|
- .append("energyConsumeLevel", getEnergyConsumeLevel())
|
|
|
|
- .append("fundingLevel", getFundingLevel())
|
|
|
|
- .append("powerConsumeLevel", getPowerConsumeLevel())
|
|
|
|
- .append("year", getYear())
|
|
|
|
- .append("month", getMonth())
|
|
|
|
- .toString();
|
|
|
|
|
|
+ .append("id", getId())
|
|
|
|
+ .append("enterpriseName", getEnterpriseName())
|
|
|
|
+ .append("location", getLocation())
|
|
|
|
+ .append("code", getCode())
|
|
|
|
+ .append("mainBusinessScore", getMainBusinessScore())
|
|
|
|
+ .append("landAreaScore", getLandAreaScore())
|
|
|
|
+ .append("totalIndustrialValueScore", getTotalIndustrialValueScore())
|
|
|
|
+ .append("gdpScore", getGdpScore())
|
|
|
|
+ .append("taxableIncomeScore", getTaxableIncomeScore())
|
|
|
|
+ .append("paidTaxScore", getPaidTaxScore())
|
|
|
|
+ .append("mainBusinessIncomeScore", getMainBusinessIncomeScore())
|
|
|
|
+ .append("employeeNumberScore", getEmployeeNumberScore())
|
|
|
|
+ .append("profitScore", getProfitScore())
|
|
|
|
+ .append("ownerEquityScore", getOwnerEquityScore())
|
|
|
|
+ .append("fundingScore", getFundingScore())
|
|
|
|
+ .append("energyConsumeScore", getEnergyConsumeScore())
|
|
|
|
+ .append("year", getYear())
|
|
|
|
+ .append("month", getMonth())
|
|
|
|
+ .toString();
|
|
}
|
|
}
|
|
}
|
|
}
|