|
@@ -10,13 +10,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<select id="getList" resultMap="BizCarrierResult" parameterType="cn.ezhizao.project.business.carrier.domain.BizCarrier">
|
|
<select id="getList" resultMap="BizCarrierResult" parameterType="cn.ezhizao.project.business.carrier.domain.BizCarrier">
|
|
select t1.id,t1.category_id,t1.code,t1.qc_code,t1.remark,t1.tenant_id,t1.is_allow_more,t1.create_time,
|
|
select t1.id,t1.category_id,t1.code,t1.qc_code,t1.remark,t1.tenant_id,t1.is_allow_more,t1.create_time,
|
|
- COALESCE((SELECT t2.is_abandoned FROM biz_carrier_reject t2 WHERE t1.id = t2.carrier_id ORDER BY t2.create_time DESC LIMIT 1), 0) AS is_abandoned
|
|
|
|
|
|
+ COALESCE((SELECT t2.is_abandoned FROM biz_carrier_reject t2 WHERE t1.id = t2.carrier_id ORDER BY t2.create_time DESC LIMIT 1), 0) AS is_abandoned, t1.is_print
|
|
FROM biz_carrier t1
|
|
FROM biz_carrier t1
|
|
<trim prefix=" WHERE" suffix="" suffixOverrides="AND">
|
|
<trim prefix=" WHERE" suffix="" suffixOverrides="AND">
|
|
deleted = 0
|
|
deleted = 0
|
|
<if test="categoryId != null and categoryId != 0"> AND category_id = #{categoryId}</if>
|
|
<if test="categoryId != null and categoryId != 0"> AND category_id = #{categoryId}</if>
|
|
<if test="tenantId != null and tenantId != 0"> AND tenant_id = #{tenantId}</if>
|
|
<if test="tenantId != null and tenantId != 0"> AND tenant_id = #{tenantId}</if>
|
|
<if test="code != null and code != ''"> AND code LIKE CONCAT('%', #{code}, '%')</if>
|
|
<if test="code != null and code != ''"> AND code LIKE CONCAT('%', #{code}, '%')</if>
|
|
|
|
+ <if test="isPrint != null"> AND is_print = #{isPrint}</if>
|
|
|
|
|
|
</trim>
|
|
</trim>
|
|
|
|
|