| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <?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.com.goldenwater.dcproj.dao.TacObjPblmstbDao">
- <resultMap type="cn.com.goldenwater.dcproj.model.TacObjPblmstb" id="tacObjPblmstbResultMap">
- <result property="id" column="ID"/>
- <result property="spfsnlType" column="SPFSNL_TYPE"/>
- <result property="pblmType" column="pblm_type"/>
- <result property="class1" column="CLASS1"/>
- <result property="class1Name" column="CLASS1_NAME"/>
- <result property="class2" column="CLASS2"/>
- <result property="class2Name" column="CLASS2_NAME"/>
- <result property="sn" column="SN"/>
- <result property="pblmsDesc" column="PBLMS_DESC"/>
- <result property="relativeLaw" column="RELATIVE_LAW"/>
- <result property="lawContent" column="LAW_CONTENT"/>
- <result property="cate0" column="CATE0"/>
- <result property="cate1" column="CATE1"/>
- <result property="cate2" column="CATE2"/>
- <result property="cate0Desc" column="CATE0_DESC"/>
- <result property="cate1Desc" column="CATE1_DESC"/>
- <result property="cate2Desc" column="CATE2_DESC"/>
- <result property="subjectIds" column="SUBJECT_IDS"/>
- <result property="note" column="NOTE"/>
- <result property="intm" column="INTM"/>
- <result property="uptm" column="UPTM"/>
- <result property="subName" column="sub_name"/>
- <result property="pblmChType" column="PBLM_CH_TYPE"/>
- <result property="dataStat" column="DATA_STAT"/>
- <result property="sortNo" column="SORT_NO"/>
- <result property="persId" column="PERS_ID"/>
- <result property="pblmTypeDesc" column="PBLM_TYPE_DESC"/>
- <result property="pblmTypeDesc2" column="PBLM_TYPE_DESC2"/>
- <result property="year" column="YEAR"/>
- <result property="isNew" column="IS_NEW"/>
- </resultMap>
- <sql id="table_columns">
- ID,pblm_type,PBLM_TYPE_DESC,PBLM_TYPE_DESC2,
- SPFSNL_TYPE,
- CLASS1,
- CLASS1_NAME,
- CLASS2,
- CLASS2_NAME,
- SN,
- PBLMS_DESC,
- RELATIVE_LAW,
- LAW_CONTENT,
- CATE0,
- CATE1,
- CATE2,
- CATE0_DESC,
- CATE1_DESC,
- CATE2_DESC,
- SUBJECT_IDS,
- NOTE,
- INTM,
- UPTM,PBLM_CH_TYPE,DATA_STAT,SORT_NO,PERS_ID,YEAR, IS_NEW
- </sql>
- <sql id="table_columns1">
- ID,pblm_type,pblm_Type_Desc,pblm_Type_Desc2,
- SPFSNL_TYPE,
- CLASS1,
- CLASS1_NAME,
- CLASS2,
- CLASS2_NAME,
- SN,
- PBLMS_DESC,
- RELATIVE_LAW,
- LAW_CONTENT,
- CATE0,
- CATE1,
- CATE2,
- CATE0_DESC,
- CATE1_DESC,
- CATE2_DESC,
- SUBJECT_IDS,
- NOTE,
- INTM,
- UPTM,PBLM_CH_TYPE,DATA_STAT,SORT_NO,PERS_ID,YEAR, IS_NEW
- </sql>
- <sql id="entity_properties">
- #{id},#{pblmType},#{pblmTypeDesc},#{pblmTypeDesc2},
- #{spfsnlType},
- #{class1},
- #{class1Name},
- #{class2},
- #{class2Name},
- #{sn},
- #{pblmsDesc},
- #{relativeLaw},
- #{lawContent},
- #{cate0},
- #{cate1},
- #{cate2},
- #{cate0Desc},
- #{cate1Desc},
- #{cate2Desc},
- #{subjectIds},
- #{note},
- #{intm},
- #{uptm},#{pblmChType},#{dataStat},#{sortNo},#{persId},#{year},#{isNew}
- </sql>
- <!-- 使用like用法:columnName like concat('%',#columnName#,'%') -->
- <sql id="page_where">
- <trim prefix="where" prefixOverrides="and | or ">
- <if test="spfsnlType != null and spfsnlType != ''">and SPFSNL_TYPE like
- concat('%',concat(#{spfsnlType},'%'))
- </if>
- <if test="pblmTypeDesc != null and pblmTypeDesc != ''">and pblm_Type_Desc = #{pblmTypeDesc}</if>
- <if test="year != null and year != ''">and YEAR = #{year}</if>
- <if test="isNew != null and isNew != ''">and IS_NEW = #{isNew}</if>
- <if test="pblmTypeDesc2 != null and pblmTypeDesc2 != ''">and pblm_Type_Desc2 = #{pblmTypeDesc2}</if>
- <if test="class1 != null and class1 != ''">and CLASS1 like concat('%',concat(#{class1},'%'))</if>
- <if test="class1Name != null and class1Name != ''">and (CLASS1_NAME like '%${class1Name}%' OR CLASS2_NAME
- like '%${class1Name}%' OR PBLMS_DESC like '%${class1Name}%' OR RELATIVE_LAW like '%${class1Name}%')
- </if>
- <if test="class2 != null and class2 != ''">and CLASS2 like '%${class2}%'</if>
- <if test="class2Name != null and class2Name != ''">and CLASS2_NAME like '%${class2Name}%'</if>
- <if test="sn != null and sn != ''">and SN like '${sn}%' </if>
- <if test="pblmsDesc != null and pblmsDesc != ''">and PBLMS_DESC like '%${pblmsDesc}%'</if>
- <if test="relativeLaw != null and relativeLaw != ''">and RELATIVE_LAW like '%${relativeLaw}%'</if>
- <if test="lawContent != null and lawContent != ''">and LAW_CONTENT like '%${lawContent}%'</if>
- <if test="cate0 != null and cate0 != ''">and CATE0 = #{cate0}</if>
- <if test="sortNo != null and sortNo != ''">and SORT_NO = #{sortNo}</if>
- <if test="pblmType != null and pblmType != ''">and pblm_type = #{pblmType}</if>
- <if test="cate1 != null and cate1 != ''">and CATE1 = #{cate1}</if>
- <if test="cate2 != null and cate2 != ''">and CATE2 = #{cate2}</if>
- <if test="cate0Desc != null and cate0Desc != ''">and CATE0_DESC = #{cate0Desc}</if>
- <if test="cate1Desc != null and cate1Desc != ''">and CATE1_DESC = #{cate1Desc}</if>
- <if test="cate2Desc != null and cate2Desc != ''">and CATE2_DESC = #{cate2Desc}</if>
- <if test="subjectIds != null and subjectIds != ''">and SUBJECT_IDS = #{subjectIds}</if>
- <if test="note != null and note != ''">and NOTE = #{note}</if>
- <if test="intm != null">and INTM = #{intm}</if>
- <if test="uptm != null">and UPTM = #{uptm}</if>
- <if test="pblmChType != null and pblmChType !=''">and PBLM_CH_TYPE = #{pblmChType}</if>
- <if test="dataStat != null and dataStat != '' and persId != null and persId !=''">and (PERS_ID = #{persId} or DATA_STAT = #{dataStat})</if>
- </trim>
- </sql>
- <sql id="page_where_new">
- <trim prefix="where" prefixOverrides="and | or ">
- <if test="spfsnlType != null and spfsnlType != ''">and SPFSNL_TYPE =#{spfsnlType}
- </if>
- <if test="class1 != null and class1 != ''">and CLASS1 =#{class1}</if>
- <if test="year != null and year != ''">and YEAR = #{year}</if>
- <if test="isNew != null and isNew != ''">and IS_NEW = #{isNew}</if>
- <if test="class1Name != null and class1Name != ''">
- and class1_name =#{class1Name}
- </if>
- <if test="pblmTypeDesc != null and pblmTypeDesc != ''">and pblm_Type_Desc = #{pblmTypeDesc}</if>
- <if test="class2 != null and class2 != ''">and CLASS2 =#{class2}</if>
- <if test="class2Name != null and class2Name != ''">and CLASS2_NAME = #{class2Name}</if>
- <if test="sn != null and sn != ''">and SN = #{sn}</if>
- <if test="pblmsDesc != null ">and PBLMS_DESC =#{pblmsDesc}</if>
- <if test="relativeLaw != null and relativeLaw != ''">and RELATIVE_LAW like '%${relativeLaw}%'</if>
- <if test="lawContent != null and lawContent != ''">and LAW_CONTENT like '%${lawContent}%'</if>
- <if test="cate0 != null and cate0 != ''">and CATE0 = #{cate0}</if>
- <if test="pblmType != null and pblmType != ''">and pblm_type = #{pblmType}</if>
- <if test="sortNo != null and sortNo != ''">and SORT_NO = #{sortNo}</if>
- <if test="cate1 != null and cate1 != ''">and CATE1 = #{cate1}</if>
- <if test="cate2 != null and cate2 != ''">and CATE2 = #{cate2}</if>
- <if test="cate0Desc != null and cate0Desc != ''">and CATE0_DESC = #{cate0Desc}</if>
- <if test="cate1Desc != null and cate1Desc != ''">and CATE1_DESC = #{cate1Desc}</if>
- <if test="cate2Desc != null and cate2Desc != ''">and CATE2_DESC = #{cate2Desc}</if>
- <if test="subjectIds != null and subjectIds != ''">and SUBJECT_IDS = #{subjectIds}</if>
- <if test="pblmChType != null and pblmChType !=''">and PBLM_CH_TYPE = #{pblmChType}</if>
- <if test="dataStat != null and dataStat !=''">and (PERS_ID = #{persId} or DATA_STAT = #{dataStat})</if>
- <if test="persId != null and persId !=''">and (PERS_ID = #{persId} or DATA_STAT = #{dataStat})</if>
- </trim>
- </sql>
- <select id="get" resultMap="tacObjPblmstbResultMap" parameterType="String">
- select
- <include refid="table_columns"/>
- from TAC_OBJ_PBLMSTB where ID = #{id}
- </select>
- <select id="getOne" resultMap="tacObjPblmstbResultMap">
- select
- <include refid="table_columns"/>
- from TAC_OBJ_PBLMSTB
- <include refid="page_where_new"/>
- </select>
- <select id="findSpfsnlType" resultType="cn.com.goldenwater.dcproj.dto.TacObjPblmstbDto">
- select distinct * from (
- select distinct b.spfsnl_type as class1_name,b.pblm_type,b.pblm_ch_type as class1 from tac_obj_pblmstb b
- where b.data_stat='1' and b.pblm_ch_type is not null
- <if test="year != null and year != ''">and b.year = #{year}</if>
- <if test="persId !=null and persId !=''">
- union all
- select distinct b.spfsnl_type as class1_name,b.pblm_type,b.pblm_ch_type as class1 from tac_obj_pblmstb b
- where b.pers_id=#{persId} and b.data_stat='0' and b.pblm_ch_type is not null
- <if test="year != null and year != ''">and b.year = #{year}</if>
- </if>
- ) b order by b.class1 asc
- </select>
- <select id="findClass1ByType" resultType="cn.com.goldenwater.dcproj.dto.TacObjPblmstbClass">
- select distinct * from (
- select distinct b.class1,b.class1_name from tac_obj_pblmstb b where b.pblm_ch_type=#{pblmChType}
- and b.data_stat='1' and b.class1 is not null
- <if test="year != null and year != ''">and b.year = #{year}</if>
- <if test="persId !=null and persId !=''">
- union all
- select distinct b.class1,b.class1_name from tac_obj_pblmstb b where b.pblm_ch_type=#{pblmChType}
- and b.class1 is not null and b.data_stat='0'
- and b.pers_id=#{persId}
- <if test="year != null and year != ''">and b.year = #{year}</if>
- </if>
- ) b order by b.class1
- </select>
- <select id="findClass2ByClass1" resultType="cn.com.goldenwater.dcproj.dto.TacObjPblmstbClass2">
- select distinct * from (
- select distinct b.class2 as class1,b.class2_name as class1_name from tac_obj_pblmstb b where b.pblm_ch_type=#{pblmChType}
- and b.class1=#{class1} and b.data_stat='1'
- and b.class2 is not null <if test="year != null and year != ''">and b.year = #{year}</if>
- <if test="persId !=null and persId !=''">
- union all
- select distinct b.class2 as class1,b.class2_name as class1_name from tac_obj_pblmstb b where b.pblm_ch_type=#{pblmChType}
- and b.class1=#{class1}
- and b.class2 is not null and b.data_stat='0'
- and b.pers_id=#{persId} <if test="year != null and year != ''">and b.year = #{year}</if>
- </if>
- ) b order by b.class1
- </select>
- <select id="findClass3ByTypeClass1Class2" resultType="cn.com.goldenwater.dcproj.dto.TacPblmsSn">
- select * from (
- select b.id, b.sn as class1,b.pblms_desc as class1_name,b.sort_no from tac_obj_pblmstb b where b.pblm_ch_type=#{pblmChType}
- and b.class1=#{class1} and b.class2=#{class2} and b.data_stat='1' and b.sn is not null
- and b.class1 is not null <if test="year != null and year != ''">and b.year = #{year}</if>
- <if test="persId !=null and persId !=''">
- union all
- select b.id, b.sn as class1,b.pblms_desc as class1_name,b.sort_no from tac_obj_pblmstb b where b.pblm_ch_type=#{pblmChType}
- and b.class1=#{class1} and b.class2=#{class2} and b.data_stat='0' and b.sn is not null
- and b.class1 is not null
- and b.pers_id=#{persId} <if test="year != null and year != ''">and b.year = #{year}</if>
- </if>
- ) w
- order by to_number(w.sort_no)
- </select>
- <select id="getBy" resultMap="tacObjPblmstbResultMap">
- select
- <include refid="table_columns"/>
- from TAC_OBJ_PBLMSTB
- <include refid="page_where"/>
- </select>
- <select id="findAll" resultMap="tacObjPblmstbResultMap">
- select
- <include refid="table_columns1"/>
- from TAC_OBJ_PBLMSTB
- </select>
- <select id="findList" resultMap="tacObjPblmstbResultMap">
- select
- <include refid="table_columns1"/>
- from TAC_OBJ_PBLMSTB
- <include refid="page_where"/>
- </select>
- <select id="findPblmstbList" resultMap="tacObjPblmstbResultMap">
- select b.ID,pblm_type, SPFSNL_TYPE, CLASS1, CLASS1_NAME, CLASS2, CLASS2_NAME, SN,
- PBLMS_DESC, RELATIVE_LAW, LAW_CONTENT, CATE0, CATE1, CATE2, CATE0_DESC, CATE1_DESC, CATE2_DESC,
- SUBJECT_IDS, b.NOTE,t.sub_name,b.intm,b.PBLM_CH_TYPE,b.DATA_STAT,b.PERS_ID from (
- select * from TAC_OBJ_PBLMSTB p where p.SPFSNL_TYPE is not null
- ) b left join tac_obj_subject t on b.subject_ids =t.id
- <include refid="page_where"/>
- order by to_number(pblm_type) asc,data_stat desc,to_number(sort_no) asc
- </select>
- <select id="findPblmstbList_bak" resultMap="tacObjPblmstbResultMap">
- select b.ID,pblm_type, SPFSNL_TYPE, CLASS1, CLASS1_NAME, CLASS2, CLASS2_NAME, SN,
- PBLMS_DESC, RELATIVE_LAW, LAW_CONTENT, CATE0, CATE1, CATE2, CATE0_DESC, CATE1_DESC, CATE2_DESC,
- SUBJECT_IDS, b.NOTE,t.sub_name,b.intm,b.PBLM_CH_TYPE,b.DATA_STAT,b.PERS_ID from (
- select * from TAC_OBJ_PBLMSTB p where p.data_stat='0' and p.SPFSNL_TYPE is not null
- ) b left join tac_obj_subject t on b.subject_ids =t.id
- <include refid="page_where"/>
- order by to_number(pblm_type) asc,to_number(sort_no) asc
- </select>
- <select id="selectCount" resultType="int">
- select count(ID) from TAC_OBJ_PBLMSTB
- <include refid="page_where"/>
- </select>
- <insert id="insert" parameterType="cn.com.goldenwater.dcproj.model.TacObjPblmstb">
- insert into TAC_OBJ_PBLMSTB(
- <include refid="table_columns"/>
- )
- values (
- <include refid="entity_properties"/>
- )
- </insert>
- <delete id="delete" parameterType="java.lang.String">
- delete from TAC_OBJ_PBLMSTB where ID = #{id}
- </delete>
- <delete id="deleteBy" parameterType="cn.com.goldenwater.dcproj.model.TacObjPblmstb">
- delete from TAC_OBJ_PBLMSTB
- <include refid="page_where"/>
- </delete>
- <update id="deleteInFlag" parameterType="java.lang.String">
- update TAC_OBJ_PBLMSTB set flag_valid = 0 where ID = #{id}
- </update>
- <update id="update" parameterType="cn.com.goldenwater.dcproj.model.TacObjPblmstb">
- update TAC_OBJ_PBLMSTB
- <trim prefix="set" suffixOverrides=",">
- <if test="year != null and year != ''">YEAR = #{year},</if>
- <if test="isNew != null and isNew != ''">IS_NEW = #{isNew},</if>
- <if test="spfsnlType != null and spfsnlType != ''">SPFSNL_TYPE = #{spfsnlType},</if>
- <if test="class1 != null and class1 != ''">CLASS1 = #{class1},</if>
- <if test="class1Name != null and class1Name != ''">CLASS1_NAME = #{class1Name},</if>
- <if test="pblmType != null and pblmType != ''">pblm_type = #{pblmType},</if>
- <if test="pblmTypeDesc != null and pblmTypeDesc != ''">pblm_Type_Desc = #{pblmTypeDesc},</if>
- <if test="pblmTypeDesc2 != null and pblmTypeDesc2 != ''"> pblm_Type_Desc2 = #{pblmTypeDesc2},</if>
- <if test="class2 != null and class2 != ''">CLASS2 = #{class2},</if>
- <if test="class2Name != null and class2Name != ''">CLASS2_NAME = #{class2Name},</if>
- <if test="sn != null and sn != ''">SN = #{sn},</if>
- <if test="pblmsDesc != null and pblmsDesc != ''">PBLMS_DESC = #{pblmsDesc},</if>
- <if test="relativeLaw != null and relativeLaw != ''">RELATIVE_LAW = #{relativeLaw},</if>
- <if test="lawContent != null and lawContent != ''">LAW_CONTENT = #{lawContent},</if>
- <if test="cate0 != null and cate0 != ''">CATE0 = #{cate0},</if>
- <if test="cate1 != null and cate1 != ''">CATE1 = #{cate1},</if>
- <if test="cate2 != null and cate2 != ''">CATE2 = #{cate2},</if>
- <if test="sortNo != null and sortNo != ''">SORT_NO = #{sortNo},</if>
- <if test="cate0Desc != null and cate0Desc != ''">CATE0_DESC = #{cate0Desc},</if>
- <if test="cate1Desc != null and cate1Desc != ''">CATE1_DESC = #{cate1Desc},</if>
- <if test="cate2Desc != null and cate2Desc != ''">CATE2_DESC = #{cate2Desc},</if>
- <if test="subjectIds != null and subjectIds != ''">SUBJECT_IDS = #{subjectIds},</if>
- <if test="note != null and note != ''">NOTE = #{note},</if>
- <if test="intm != null">INTM = #{intm},</if>
- <if test="uptm != null">UPTM = #{uptm},</if>
- <if test="pblmChType != null and pblmChType !=''"> PBLM_CH_TYPE = #{pblmChType},</if>
- <if test="dataStat != null and dataStat !=''"> DATA_STAT = #{dataStat},</if>
- <if test="persId != null and persId !=''"> PERS_ID = #{persId},</if>
- </trim>
- <where>ID = #{id}</where>
- </update>
- <update id="updateBy" parameterType="cn.com.goldenwater.dcproj.model.TacObjPblmstb">
- update TAC_OBJ_PBLMSTB
- <trim prefix="set" suffixOverrides=",">
- <if test="year != null and year != ''">YEAR = #{year},</if>
- <if test="isNew != null and isNew != ''">IS_NEW = #{isNew},</if>
- <if test="spfsnlType != null and spfsnlType != ''">SPFSNL_TYPE = #{spfsnlType},</if>
- <if test="pblmType != null and pblmType != ''">pblm_type = #{pblmType},</if>
- <if test="pblmChType != null"> PBLM_CH_TYPE = #{pblmChType},</if>
- <if test="pblmTypeDesc != null and pblmTypeDesc != ''">pblm_Type_Desc = #{pblmTypeDesc},</if>
- <if test="pblmTypeDesc2 != null and pblmTypeDesc2 != ''"> pblm_Type_Desc2 = #{pblmTypeDesc2},</if>
- <if test="class1 != null and class1 != ''">CLASS1 = #{class1},</if>
- <if test="class1Name != null and class1Name != ''">CLASS1_NAME = #{class1Name},</if>
- <if test="class2 != null and class2 != ''">CLASS2 = #{class2},</if>
- <if test="class2Name != null and class2Name != ''">CLASS2_NAME = #{class2Name},</if>
- <if test="sn != null and sn != ''">SN = #{sn},</if>
- <if test="pblmsDesc != null and pblmsDesc != ''">PBLMS_DESC = #{pblmsDesc},</if>
- <if test="relativeLaw != null and relativeLaw != ''">RELATIVE_LAW = #{relativeLaw},</if>
- <if test="lawContent != null and lawContent != ''">LAW_CONTENT = #{lawContent},</if>
- <if test="cate0 != null and cate0 != ''">CATE0 = #{cate0},</if>
- <if test="cate1 != null and cate1 != ''">CATE1 = #{cate1},</if>
- <if test="sortNo != null and sortNo != ''">SORT_NO = #{sortNo},</if>
- <if test="cate2 != null and cate2 != ''">CATE2 = #{cate2},</if>
- <if test="subjectIds != null and subjectIds != ''">SUBJECT_IDS = #{subjectIds},</if>
- <if test="note != null and note != ''">NOTE = #{note},</if>
- <if test="intm != null">INTM = #{intm},</if>
- <if test="uptm != null">UPTM = #{uptm},</if>
- <if test="dataStat != null and dataStat !=''"> DATA_STAT = #{dataStat},</if>
- <if test="persId != null and persId !=''"> PERS_ID = #{persId},</if>
- </trim>
- <include refid="page_where"/>
- </update>
- <!-- 其他自定义SQL -->
- <delete id="delList">
- DELETE FROM TAC_OBJ_PBLMSTB
- WHERE ID IN
- <foreach item="id" collection="ids" open="(" separator="," close=")">
- #{id,jdbcType=VARCHAR}
- </foreach>
- </delete>
- <update id="updateList" parameterType="cn.com.goldenwater.dcproj.param.TacPblmClassParam">
- update TAC_OBJ_PBLMSTB
- <trim prefix="set" suffixOverrides=",">
- <if test="class1 != null and class1 != ''">CLASS1 = #{class1},</if>
- <if test="class1Name != null and class1Name != ''">CLASS1_NAME = #{class1Name},</if>
- <if test="class2 != null and class2 != ''">CLASS2 = #{class2},</if>
- <if test="class2Name != null and class2Name != ''">CLASS2_NAME = #{class2Name},</if>
- </trim>
- WHERE ID IN
- <foreach item="id" collection="ids" open="(" separator="," close=")">
- #{id,jdbcType=VARCHAR}
- </foreach>
- </update>
- <update id="updateStb" parameterType="cn.com.goldenwater.dcproj.model.TacObjPblmstb">
- update TAC_OBJ_PBLMSTB
- set cate0 = #{cate0},cate1=#{cate1},cate2=#{cate2}
- where SPFSNL_TYPE = #{spfsnlType} and PBLMS_DESC = #{pblmsDesc}
- </update>
- </mapper>
|