2025-03-21 19:10:18 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<!DOCTYPE mapper
|
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
<mapper namespace="org.asinkj.amz.mapper.BizInquiryRequestMapper">
|
2025-03-25 18:05:19 +08:00
|
|
|
<select id="selectOpenAndEffectiveInquiries" resultType="org.asinkj.amz.domain.BizInquiryRequest">
|
|
|
|
SELECT *
|
|
|
|
FROM biz_inquiry_request
|
|
|
|
WHERE inquiry_status = 'OPEN'
|
|
|
|
AND del_flag = '0'
|
|
|
|
AND #{currentDate} = deadline::date
|
|
|
|
</select>
|
2025-07-15 08:47:47 +08:00
|
|
|
<select id="selectCustomPage" resultType="org.asinkj.amz.domain.vo.BizInquiryRequestVo">
|
|
|
|
SELECT
|
|
|
|
req.*
|
|
|
|
FROM biz_inquiry_request req
|
|
|
|
<where>
|
|
|
|
${ew.sqlSegment} <!-- MyBatis-Plus 动态条件 -->
|
|
|
|
</where>
|
|
|
|
</select>
|
2025-03-21 19:10:18 +08:00
|
|
|
</mapper>
|