12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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="cn.ezhizao.project.business.mapper.BizCarrierMapper">
- <resultMap type="cn.ezhizao.project.business.domain.BizCarrier" id="BizCarrierResult">
- <id column="id" property="id"/>
- </resultMap>
- <select id="getList" resultMap="BizCarrierResult" parameterType="cn.ezhizao.project.business.domain.BizCarrier">
- select t1.id,t1.category_id,t1.code,t1.qc_code,t1.remark,t1.tenant_id,t1.is_allow_more,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
- FROM biz_carrier t1
- <trim prefix=" WHERE" suffix="" suffixOverrides="AND">
- deleted = 0
- <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="code != null and code != ''"> AND code LIKE CONCAT('%', #{code}, '%')</if>
- <if test="isAbandoned != null"> AND is_abandoned = #{isAbandoned}</if>
- <!-- 未关联任何生产单 -->
- <if test="notInUse == 1">
- AND not exists (select 1 from biz_daywork_carrier t where t.is_changed = 0 and t.carrier_id = t1.id and t.deleted = 0)
- </if>
- </trim>
- </select>
- <select id="getListFromOutsource" resultMap="BizCarrierResult" parameterType="cn.ezhizao.project.business.domain.BizCarrier">
- select t1.id,t1.category_id,t1.code,t1.qc_code,t1.remark,t1.tenant_id,t1.is_allow_more,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
- FROM biz_carrier t1 left join biz_carrier_category t2 on t2.id = t1.category_id
- <trim prefix=" WHERE" suffix="" suffixOverrides="AND">
- t1.deleted = 0 and t2.is_inspection = 0 and t2.is_none = 0
- <if test="categoryId != null and categoryId != 0"> AND t1.category_id = #{categoryId}</if>
- <if test="code != null and code != ''"> AND t1.code=#{code}</if>
- <!-- 未关联任何生产单 -->
- <if test="notInUse == 1">
- AND case when t1.is_allow_more = 0 then (not exists (select 1 from biz_daywork_carrier t where t.is_changed = 0 and t.carrier_id = t1.id and t.daywork_id != #{dayworkId} and t.deleted = 0)) else true end
- </if>
- </trim>
- </select>
- <update id="unAbandoned">
- update biz_carrier
- <set>
- is_abandoned=0,
- abandonment_date = '0000-00-00 00:00:00.000000',
- abandonment_reason = ''
- </set>
- where id = #{id}
- </update>
- <delete id="physicalDelete">
- DELETE FROM biz_carrier
- <trim prefix=" WHERE" suffix="" suffixOverrides="AND">
- <if test="id != null">
- id = #{id} AND
- </if>
- <!-- 删除条件为其他外键可以在这里加 -->
- </trim>
- </delete>
- </mapper>
|