重新推送修改
This commit is contained in:
parent
614df64837
commit
a605df1cf6
|
@ -71,6 +71,7 @@ public class PrepaymentEntity extends BaseEntity {
|
||||||
private String dataMsg;
|
private String dataMsg;
|
||||||
//用户手机号
|
//用户手机号
|
||||||
private String userPhone;
|
private String userPhone;
|
||||||
|
private String gys;
|
||||||
public String getStartTime() {
|
public String getStartTime() {
|
||||||
return startTime;
|
return startTime;
|
||||||
}
|
}
|
||||||
|
@ -285,4 +286,12 @@ public class PrepaymentEntity extends BaseEntity {
|
||||||
public void setUserPhone(String userPhone) {
|
public void setUserPhone(String userPhone) {
|
||||||
this.userPhone = userPhone;
|
this.userPhone = userPhone;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getGys() {
|
||||||
|
return gys;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGys(String gys) {
|
||||||
|
this.gys = gys;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
<result property="userPhone" column="userPhone" jdbcType="VARCHAR"/>
|
<result property="userPhone" column="userPhone" jdbcType="VARCHAR"/>
|
||||||
<result property="dataMsg" column="dataMsg" jdbcType="VARCHAR"/>
|
<result property="dataMsg" column="dataMsg" jdbcType="VARCHAR"/>
|
||||||
<result property="dataStatus" column="dataStatus" jdbcType="VARCHAR"/>
|
<result property="dataStatus" column="dataStatus" jdbcType="VARCHAR"/>
|
||||||
|
<result property="gys" column="gys" jdbcType="VARCHAR"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<!-- 查询的字段-->
|
<!-- 查询的字段-->
|
||||||
<sql id = "PrepaymentEntity_Base_Column_List">
|
<sql id = "PrepaymentEntity_Base_Column_List">
|
||||||
|
@ -57,7 +58,8 @@
|
||||||
modifiedOn,
|
modifiedOn,
|
||||||
dataStatus,
|
dataStatus,
|
||||||
dataMsg,
|
dataMsg,
|
||||||
userPhone
|
userPhone,
|
||||||
|
gys
|
||||||
</sql>
|
</sql>
|
||||||
<!-- 查询 采用==查询 -->
|
<!-- 查询 采用==查询 -->
|
||||||
<select id="entity_list_base" resultMap="get-PrepaymentEntity-result" parameterType = "com.hzya.frame.plugin.dgx.u9c.entity.PrepaymentEntity">
|
<select id="entity_list_base" resultMap="get-PrepaymentEntity-result" parameterType = "com.hzya.frame.plugin.dgx.u9c.entity.PrepaymentEntity">
|
||||||
|
|
|
@ -119,8 +119,8 @@ public class U9CPluginServiceImpl implements IU9CPluginService {
|
||||||
zb.put("field0011", prepaymentDetailList.get(0).getReqFundUseName());
|
zb.put("field0011", prepaymentDetailList.get(0).getReqFundUseName());
|
||||||
//出纳确认
|
//出纳确认
|
||||||
zb.put("field0012", prepayment.getCashierConfirmed());
|
zb.put("field0012", prepayment.getCashierConfirmed());
|
||||||
//折扣前请款金额合计
|
//供应商
|
||||||
zb.put("field0044", "");
|
zb.put("field0044", prepayment.getGys());
|
||||||
//请款对应折扣合计
|
//请款对应折扣合计
|
||||||
zb.put("field0045", "");
|
zb.put("field0045", "");
|
||||||
//折扣后请款金额合计
|
//折扣后请款金额合计
|
||||||
|
|
Loading…
Reference in New Issue