|
@@ -15,10 +15,16 @@ public class PriceIndex extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** 代码 */
|
|
|
- @Excel(name = "代码")
|
|
|
+ /** ID */
|
|
|
+
|
|
|
private Long id;
|
|
|
|
|
|
+ @Excel(name = "行业名称")
|
|
|
+ private String industry;
|
|
|
+
|
|
|
+ @Excel(name = "行业代码")
|
|
|
+ private String code;
|
|
|
+
|
|
|
/** 名称 */
|
|
|
@Excel(name = "名称")
|
|
|
private String name;
|
|
@@ -43,7 +49,23 @@ public class PriceIndex extends BaseEntity
|
|
|
@Excel(name = "指数")
|
|
|
private Long index;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
+ public String getIndustryName() {
|
|
|
+ return industry;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndustryName(String industryName) {
|
|
|
+ this.industry = industryName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id)
|
|
|
{
|
|
|
this.id = id;
|
|
|
}
|
|
@@ -109,14 +131,16 @@ public class PriceIndex extends BaseEntity
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("name", getName())
|
|
|
- .append("month", getMonth())
|
|
|
- .append("year", getYear())
|
|
|
- .append("unit", getUnit())
|
|
|
- .append("creator", getCreator())
|
|
|
- .append("index", getIndex())
|
|
|
- .toString();
|
|
|
+ return "PriceIndex{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", industryName='" + industry + '\'' +
|
|
|
+ ", code='" + code + '\'' +
|
|
|
+ ", name='" + name + '\'' +
|
|
|
+ ", month=" + month +
|
|
|
+ ", year=" + year +
|
|
|
+ ", unit='" + unit + '\'' +
|
|
|
+ ", creator='" + creator + '\'' +
|
|
|
+ ", index=" + index +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|