增加发起时间字段

This commit is contained in:
xiang2lin 2025-05-22 17:39:27 +08:00
parent 95440ef85f
commit a73e35f006
2 changed files with 11 additions and 0 deletions

View File

@ -18,6 +18,8 @@ public class CInvoiceImportHEntity extends BaseEntity {
private String yd_res_field;
//有度发票导入接口返回的id
private String yd_result;
//发起时间
private String start_date;
public String getTab_name() {
return tab_name;
@ -58,4 +60,12 @@ public class CInvoiceImportHEntity extends BaseEntity {
public void setYd_result(String yd_result) {
this.yd_result = yd_result;
}
public String getStart_date() {
return start_date;
}
public void setStart_date(String start_date) {
this.start_date = start_date;
}
}

View File

@ -7,6 +7,7 @@
<result property="yd_res_field" column="yd_res_field" />
<result property="bill_type" column="bill_type" />
<result property="bill_code" column="bill_code" />
<result property="start_date" column="start_date" />
</resultMap>