|
@@ -2,7 +2,7 @@
|
|
|
<!DOCTYPE mapper
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
-<mapper namespace="com.zhongzheng.system.mapper.OrderInvoiceMapper">
|
|
|
+<mapper namespace="com.zhongzheng.modules.order.mapper.OrderInvoiceMapper">
|
|
|
|
|
|
<resultMap type="com.zhongzheng.modules.order.domain.OrderInvoice" id="OrderInvoiceResult">
|
|
|
<result property="invoiceId" column="invoice_id"/>
|
|
@@ -38,8 +38,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="subject" column="subject"/>
|
|
|
<result property="userId" column="user_id"/>
|
|
|
<result property="taxRegistryNumber" column="tax_registry_number"/>
|
|
|
- <result property="createTime" column="create_time"/>
|
|
|
- <result property="updateTime" column="update_time"/>
|
|
|
<result property="status" column="status"/>
|
|
|
<result property="invoiceStatus" column="invoice_status"/>
|
|
|
<result property="amount" column="amount"/>
|
|
@@ -72,9 +70,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<select id="selectList" parameterType="com.zhongzheng.modules.order.bo.OrderInvoiceQueryBo" resultMap="OrderInvoiceVoResult">
|
|
|
SELECT
|
|
|
- oi.*
|
|
|
+ *
|
|
|
FROM
|
|
|
- order_invoice oi
|
|
|
+ order_invoice
|
|
|
+ where 1=1
|
|
|
</select>
|
|
|
|
|
|
</mapper>
|