You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
1.0 KiB
18 lines
1.0 KiB
<?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="com.biutag.supervision.mapper.NegativeWorkMapper"> |
|
|
|
<select id="queryPage" resultType="com.biutag.supervision.pojo.model.NegativeWorkModel"> |
|
select w.id, w.negative_id, w.depart_id work_depart_id, n.originId, n.happenTime, n.discoveryTime, n.problemSources, n.thingDesc, n.contactPhone, |
|
n.responderName, n.businessTypeCode, n.businessTypeName, n.policeTypeName, n.policeType, n.involveDepartName, n.involveDepartId, n.processing_status, |
|
n.flow_key, n.first_distribute_time, n.max_sign_duration, n.max_handle_duration, n.extension_days, |
|
n.handle_second_depart_id, n.handle_second_depart_name, n.handle_three_depart_id, n.handle_three_depart_name, n.involveProblem |
|
from negative_work w |
|
left join negative n on w.negative_id = n.id |
|
${ew.getCustomSqlSegment} |
|
</select> |
|
|
|
|
|
</mapper> |