parent
5550b7fe79
commit
81448dbc47
|
@ -35,7 +35,8 @@ public class AgentPaymentEntity extends BaseEntity {
|
|||
private String applyCode;
|
||||
//支付结果
|
||||
private String payResult;
|
||||
|
||||
//支付日期
|
||||
private String payDate;
|
||||
private String tableName;//表名称
|
||||
private String billName;//单据名称
|
||||
|
||||
|
@ -142,4 +143,12 @@ public class AgentPaymentEntity extends BaseEntity {
|
|||
public void setPayResult(String 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
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<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>
|
||||
</trim>
|
||||
where id = #{oaId}
|
||||
|
|
Loading…
Reference in New Issue