Commit 76b5b43b authored by lenovo's avatar lenovo

Merge remote-tracking branch 'origin/master'

parents 58f17ac8 7efee5d1
...@@ -51,7 +51,7 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity ...@@ -51,7 +51,7 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity
/** 日期 */ /** 日期 */
@Excel(name = "日期") @Excel(name = "日期")
private String date; private String hDate;
public static long getSerialVersionUID() { public static long getSerialVersionUID() {
return serialVersionUID; return serialVersionUID;
...@@ -131,12 +131,12 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity ...@@ -131,12 +131,12 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity
this.createBy = createBy; this.createBy = createBy;
} }
public String getDate() { public String gethDate() {
return date; return hDate;
} }
public void setDate(String date) { public void sethDate(String hDate) {
this.date = date; this.hDate = hDate;
} }
@Override @Override
...@@ -151,7 +151,7 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity ...@@ -151,7 +151,7 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity
", nuitPrice=" + nuitPrice + ", nuitPrice=" + nuitPrice +
", money=" + money + ", money=" + money +
", createBy='" + createBy + '\'' + ", createBy='" + createBy + '\'' +
", date=" + date + ", hDate=" + hDate +
'}'; '}';
} }
} }
...@@ -13,7 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -13,7 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="nuitPrice" column="nuit_price" /> <result property="nuitPrice" column="nuit_price" />
<result property="money" column="money" /> <result property="money" column="money" />
<result property="createBy" column="create_by" /> <result property="createBy" column="create_by" />
<result property="date" column="date" /> <result property="hDate" column="date" />
</resultMap> </resultMap>
<insert id="addActSuppliesSixMinesSummaryTable" parameterType="ActSuppliesSixMinesSummaryTable" useGeneratedKeys="true" keyProperty="id"> <insert id="addActSuppliesSixMinesSummaryTable" parameterType="ActSuppliesSixMinesSummaryTable" useGeneratedKeys="true" keyProperty="id">
...@@ -27,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -27,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="nuitPrice != null">nuit_price,</if> <if test="nuitPrice != null">nuit_price,</if>
<if test="money != null">money,</if> <if test="money != null">money,</if>
<if test="createBy != null">create_by,</if> <if test="createBy != null">create_by,</if>
<if test="date != null">date,</if> <if test="hDate != null">h_date,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="hId != null">#{hId},</if> <if test="hId != null">#{hId},</if>
...@@ -38,7 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -38,7 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="nuitPrice != null">#{nuitPrice},</if> <if test="nuitPrice != null">#{nuitPrice},</if>
<if test="money != null">#{money},</if> <if test="money != null">#{money},</if>
<if test="createBy != null">#{createBy},</if> <if test="createBy != null">#{createBy},</if>
<if test="date != null">#{date},</if> <if test="hDate != null">#{hDate},</if>
</trim> </trim>
</insert> </insert>
......
...@@ -127,7 +127,7 @@ export default { ...@@ -127,7 +127,7 @@ export default {
nuitPrice : "", nuitPrice : "",
money : "", money : "",
createBy : "", createBy : "",
date : null hDate : null
}, },
dfrom:{}, dfrom:{},
...@@ -1301,7 +1301,7 @@ export default { ...@@ -1301,7 +1301,7 @@ export default {
this.froms.nuitPrice =a5; this.froms.nuitPrice =a5;
this.froms.money =a6; this.froms.money =a6;
this.froms.createBy = data[i].createBy; this.froms.createBy = data[i].createBy;
this.froms.date = data[i].date; this.froms.hDate = data[i].date;
addActSuppliesSixMinesSummaryTable(this.froms).then(response => {}); addActSuppliesSixMinesSummaryTable(this.froms).then(response => {});
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment