|
@ -129,6 +129,12 @@ |
|
|
<result column="filePath" property="filePath"></result> |
|
|
<result column="filePath" property="filePath"></result> |
|
|
<result column="name" property="name"></result> |
|
|
<result column="name" property="name"></result> |
|
|
<result column="invoiceNo" property="invoiceNo"></result> |
|
|
<result column="invoiceNo" property="invoiceNo"></result> |
|
|
|
|
|
<result column="address" property="address"></result> |
|
|
|
|
|
<result column="telPhone" property="telPhone"></result> |
|
|
|
|
|
<result column="openingBank" property="openingBank"></result> |
|
|
|
|
|
<result column="bankNum" property="bankNum"></result> |
|
|
|
|
|
<result column="recipient" property="recipient"></result> |
|
|
|
|
|
<result column="transferTime" property="transferTime"></result> |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
<select id="getInvoiceDetailsBySid" |
|
|
<select id="getInvoiceDetailsBySid" |
|
|
resultMap="getInvoiceDetailsBySidResultMap"> |
|
|
resultMap="getInvoiceDetailsBySidResultMap"> |
|
@ -149,7 +155,12 @@ |
|
|
v.createTime as createTime, |
|
|
v.createTime as createTime, |
|
|
v.invoiceNo as invoiceNo, |
|
|
v.invoiceNo as invoiceNo, |
|
|
v.invoiceCode as invoiceCode, |
|
|
v.invoiceCode as invoiceCode, |
|
|
v.filePath as filePath |
|
|
v.filePath as filePath, |
|
|
|
|
|
v.address as address, |
|
|
|
|
|
v.telPhone as telPhone, |
|
|
|
|
|
v.openingBank as openingBank, |
|
|
|
|
|
v.recipient as recipient, |
|
|
|
|
|
v.transferTime as transferTime |
|
|
FROM fin_vehicle_invoice AS v |
|
|
FROM fin_vehicle_invoice AS v |
|
|
LEFT JOIN anrui_portal.sys_user AS u ON v.createBySid = u.sid |
|
|
LEFT JOIN anrui_portal.sys_user AS u ON v.createBySid = u.sid |
|
|
LEFT JOIN anrui_portal.sys_staffinfo AS si ON u.staffSid = si.sid |
|
|
LEFT JOIN anrui_portal.sys_staffinfo AS si ON u.staffSid = si.sid |
|
|