parent
5550b7fe79
commit
81448dbc47
|
@ -35,7 +35,8 @@ public class AgentPaymentEntity extends BaseEntity {
|
||||||
private String applyCode;
|
private String applyCode;
|
||||||
//支付结果
|
//支付结果
|
||||||
private String payResult;
|
private String payResult;
|
||||||
|
//支付日期
|
||||||
|
private String payDate;
|
||||||
private String tableName;//表名称
|
private String tableName;//表名称
|
||||||
private String billName;//单据名称
|
private String billName;//单据名称
|
||||||
|
|
||||||
|
@ -142,4 +143,12 @@ public class AgentPaymentEntity extends BaseEntity {
|
||||||
public void setPayResult(String payResult) {
|
public void setPayResult(String payResult) {
|
||||||
this.payResult = payResult;
|
this.payResult = payResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getPayDate() {
|
||||||
|
return payDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayDate(String payDate) {
|
||||||
|
this.payDate = payDate;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,6 +120,7 @@
|
||||||
update formmain_0224 set
|
update formmain_0224 set
|
||||||
<trim suffix="" suffixOverrides=",">
|
<trim suffix="" suffixOverrides=",">
|
||||||
<if test="applyCode != null and applyCode !='' ">field0043 =#{applyCode},</if>
|
<if test="applyCode != null and applyCode !='' ">field0043 =#{applyCode},</if>
|
||||||
|
<if test="payDate != null and payDate !='' ">field0058 =#{payDate},</if>
|
||||||
<if test="payResult != null and payResult !='' ">field0046 =#{payResult}</if>
|
<if test="payResult != null and payResult !='' ">field0046 =#{payResult}</if>
|
||||||
</trim>
|
</trim>
|
||||||
where id = #{oaId}
|
where id = #{oaId}
|
||||||
|
|
Loading…
Reference in New Issue