|
@@ -3,7 +3,6 @@
|
|
|
<mapper namespace="com.jkcredit.invoice.mapper.binvoce.HcInvoiceMapper">
|
|
|
<!-- 通用查询映射结果 -->
|
|
|
<resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.invoice.HcInvoice">
|
|
|
- <id column="id" property="id"/>
|
|
|
<result column="sellerName" property="sellerName"/>
|
|
|
<result column="sellerTaxpayerCode" property="sellerTaxpayerCode"/>
|
|
|
<result column="buyerName" property="buyerName"/>
|
|
@@ -27,12 +26,14 @@
|
|
|
rawInvoiceId,
|
|
|
rawInvoiceCode,
|
|
|
rawInvoiceNum,
|
|
|
+ invoiceCode,
|
|
|
+ invoiceNum,
|
|
|
invoiceUrl,
|
|
|
yearMonth
|
|
|
</sql>
|
|
|
<select id="selectInvoiceByCondition" parameterType="com.jkcredit.invoice.model.entity.invoice.HcInvoice" resultMap="BaseResultMap">
|
|
|
select
|
|
|
- id,<include refid="baseSql" />
|
|
|
+ <include refid="baseSql" />
|
|
|
from t_hcinvoice
|
|
|
where yearMonth = #{yearMonth,jdbcType=VARCHAR}
|
|
|
<if test="buyerName != null and buyerName != ''">
|
|
@@ -52,6 +53,8 @@
|
|
|
#{rawInvoiceId,jdbcType=VARCHAR},
|
|
|
#{rawInvoiceCode,jdbcType=VARCHAR},
|
|
|
#{rawInvoiceNum,jdbcType=VARCHAR},
|
|
|
+ #{invoiceCode,jdbcType=VARCHAR},
|
|
|
+ #{invoiceNum,jdbcType=VARCHAR},
|
|
|
#{invoiceUrl,jdbcType=VARCHAR},
|
|
|
#{yearMonth,jdbcType=VARCHAR}
|
|
|
)
|