重新推送修改
This commit is contained in:
parent
614df64837
commit
a605df1cf6
|
@ -71,6 +71,7 @@ public class PrepaymentEntity extends BaseEntity {
|
|||
private String dataMsg;
|
||||
//用户手机号
|
||||
private String userPhone;
|
||||
private String gys;
|
||||
public String getStartTime() {
|
||||
return startTime;
|
||||
}
|
||||
|
@ -285,4 +286,12 @@ public class PrepaymentEntity extends BaseEntity {
|
|||
public void setUserPhone(String 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="dataMsg" column="dataMsg" jdbcType="VARCHAR"/>
|
||||
<result property="dataStatus" column="dataStatus" jdbcType="VARCHAR"/>
|
||||
<result property="gys" column="gys" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
<!-- 查询的字段-->
|
||||
<sql id = "PrepaymentEntity_Base_Column_List">
|
||||
|
@ -57,7 +58,8 @@
|
|||
modifiedOn,
|
||||
dataStatus,
|
||||
dataMsg,
|
||||
userPhone
|
||||
userPhone,
|
||||
gys
|
||||
</sql>
|
||||
<!-- 查询 采用==查询 -->
|
||||
<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("field0012", prepayment.getCashierConfirmed());
|
||||
//折扣前请款金额合计
|
||||
zb.put("field0044", "");
|
||||
//供应商
|
||||
zb.put("field0044", prepayment.getGys());
|
||||
//请款对应折扣合计
|
||||
zb.put("field0045", "");
|
||||
//折扣后请款金额合计
|
||||
|
|
Loading…
Reference in New Issue