Преглед на файлове

ljx:修改价格指数数据库和xml中的index为indexv防止关键词重名

ljx преди 1 месец
родител
ревизия
4410460a1b

+ 3 - 3
enteprise-admin/src/main/java/com/enteprise/priceindex/domain/PriceIndex.java

@@ -47,7 +47,7 @@ public class PriceIndex extends BaseEntity
 
     /** 指数 */
     @Excel(name = "指数")
-    private Long index;
+    private Double index;
 
     public String getIndustryName() {
         return industry;
@@ -119,12 +119,12 @@ public class PriceIndex extends BaseEntity
     {
         return creator;
     }
-    public void setIndex(Long index) 
+    public void setIndex(Double index)
     {
         this.index = index;
     }
 
-    public Long getIndex() 
+    public Double getIndex()
     {
         return index;
     }

+ 3 - 2
enteprise-admin/src/main/resources/mapper/priceindex/PriceIndexMapper.xml

@@ -83,9 +83,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 
     <!-- 批量插入 -->
     <insert id="insertBatch">
-        INSERT INTO price_index (id, name, month, year, unit, creator, `index`, industry, code) VALUES
+        INSERT INTO price_index (id, name, month, year, unit, creator, `indexv`, industry, code) VALUES
         <foreach collection="list" item="item" separator=",">
-            (#{item.id}, #{item.name}, #{item.month}, #{item.year}, #{item.unit}, #{item.creator}, #{item.index},#{item.industry},#{item.code})
+            (#{item.id}, #{item.name}, #{item.month}, #{item.year}, #{item.unit}, #{item.creator}, #{item.index}, #{item.industry}, #{item.code})
         </foreach>
     </insert>
+
 </mapper>