|
|
@@ -25,6 +25,8 @@ public class AcceptNotify extends KeyEntity{
|
|
|
private Long an_buyeruu;
|
|
|
private String an_sendcode;
|
|
|
private String an_recorder;
|
|
|
+ private String an_remark;
|
|
|
+
|
|
|
private List<AcceptNotifyDetail> details;
|
|
|
|
|
|
public Long getB2b_ss_id() {
|
|
|
@@ -107,6 +109,14 @@ public class AcceptNotify extends KeyEntity{
|
|
|
this.details = details;
|
|
|
}
|
|
|
|
|
|
+ public String getAn_remark() {
|
|
|
+ return an_remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAn_remark(String an_remark) {
|
|
|
+ this.an_remark = an_remark;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* @param primaryKey
|
|
|
* 主键
|
|
|
@@ -125,7 +135,8 @@ public class AcceptNotify extends KeyEntity{
|
|
|
}
|
|
|
|
|
|
private String toSqlString(int primaryKey, String code) {
|
|
|
- return "insert into AcceptNotify(b2b_ss_id,an_id,an_code,an_venduu,an_buyeruu,an_sendcode,an_status,an_statuscode,an_date,an_indate,an_sendstatus,an_recorder) values ("
|
|
|
+ return "insert into AcceptNotify(b2b_ss_id,an_id,an_code,an_venduu,an_buyeruu,an_sendcode,an_status," +
|
|
|
+ "an_statuscode,an_date,an_indate,an_sendstatus,an_recorder,an_remark) values ("
|
|
|
+ b2b_ss_id
|
|
|
+ ","
|
|
|
+ primaryKey
|
|
|
@@ -143,7 +154,7 @@ public class AcceptNotify extends KeyEntity{
|
|
|
+ Status.AUDITED.code()
|
|
|
+ "',sysdate,sysdate,'已下载','"
|
|
|
+ StringUtil.nvl(an_recorder, "")
|
|
|
- + "')";
|
|
|
+ + "','"+an_remark+"')";
|
|
|
}
|
|
|
|
|
|
@Override
|