增加发起时间字段
This commit is contained in:
parent
95440ef85f
commit
a73e35f006
|
@ -18,6 +18,8 @@ public class CInvoiceImportHEntity extends BaseEntity {
|
||||||
private String yd_res_field;
|
private String yd_res_field;
|
||||||
//有度发票导入接口返回的id
|
//有度发票导入接口返回的id
|
||||||
private String yd_result;
|
private String yd_result;
|
||||||
|
//发起时间
|
||||||
|
private String start_date;
|
||||||
|
|
||||||
public String getTab_name() {
|
public String getTab_name() {
|
||||||
return tab_name;
|
return tab_name;
|
||||||
|
@ -58,4 +60,12 @@ public class CInvoiceImportHEntity extends BaseEntity {
|
||||||
public void setYd_result(String yd_result) {
|
public void setYd_result(String yd_result) {
|
||||||
this.yd_result = 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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<result property="yd_res_field" column="yd_res_field" />
|
<result property="yd_res_field" column="yd_res_field" />
|
||||||
<result property="bill_type" column="bill_type" />
|
<result property="bill_type" column="bill_type" />
|
||||||
<result property="bill_code" column="bill_code" />
|
<result property="bill_code" column="bill_code" />
|
||||||
|
<result property="start_date" column="start_date" />
|
||||||
|
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue