| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?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.FeedbackDao">
- <resultMap type="cn.com.goldenwater.dcproj.model.Feedback" id="feedbackResultMap">
- <result property="id" column="ID"/>
- <result property="ptype" column="PTYPE"/>
- <result property="detail" column="DETAIL"/>
- <result property="uname" column="UNAME"/>
- <result property="phone" column="PHONE"/>
- <result property="remark" column="REMARK"/>
- <result property="state" column="STATE"/>
- <result property="intm" column="INTM"/>
- <result property="uptm" column="UPTM"/>
- <result property="dataStat" column="DATA_STAT"/>
- </resultMap>
-
- <sql id="table_columns">
- ID,
- PTYPE,
- DETAIL,
- UNAME,
- PHONE,
- REMARK,
- STATE,
- INTM,
- UPTM,
- DATA_STAT
- </sql>
- <sql id="entity_properties">
- #{id},
- #{ptype},
- #{detail},
- #{uname},
- #{phone},
- #{remark},
- #{state},
- #{intm},
- #{uptm},
- #{dataStat}
- </sql>
- <!-- 使用like用法:columnName like concat('%',#columnName#,'%') -->
- <sql id="page_where">
- <trim prefix="where" prefixOverrides="and | or ">
- <if test="ptype != null and ptype != ''">and PTYPE = #{ptype}</if>
- <if test="detail != null and detail != ''">and DETAIL = #{detail}</if>
- <if test="uname != null and uname != ''">and UNAME = #{uname}</if>
- <if test="phone != null and phone != ''">and PHONE = #{phone}</if>
- <if test="remark != null and remark != ''">and REMARK = #{remark}</if>
- <if test="state != null and state != ''">and STATE = #{state}</if>
- <if test="intm != null">and INTM = #{intm}</if>
- <if test="uptm != null">and UPTM = #{uptm}</if>
- <if test="dataStat != null and dataStat != ''">and DATA_STAT = #{dataStat}</if>
- and DATA_STAT='0'
- </trim>
- </sql>
- <select id="get" resultMap="feedbackResultMap" parameterType="String" >
- select <include refid="table_columns" /> from GW_SYS_FEEDBACK where ID = #{id}
- </select>
- <select id="getBy" resultMap="feedbackResultMap">
- select <include refid="table_columns" /> from GW_SYS_FEEDBACK <include refid="page_where" />
- </select>
- <select id="findAll" resultMap="feedbackResultMap">
- select <include refid="table_columns" /> from GW_SYS_FEEDBACK
- </select>
- <select id="findList" resultMap="feedbackResultMap">
- select <include refid="table_columns" /> from GW_SYS_FEEDBACK <include refid="page_where" />
- </select>
- <select id="selectCount" resultType="int" >
- select count(ID) from GW_SYS_FEEDBACK <include refid="page_where" />
- </select>
- <insert id="insert" parameterType="cn.com.goldenwater.dcproj.model.Feedback">
- insert into GW_SYS_FEEDBACK( <include refid="table_columns" /> )
- values ( <include refid="entity_properties" /> )
- </insert>
- <delete id="delete" parameterType="java.lang.String">
- update GW_SYS_FEEDBACK set DATA_STAT='9' where ID = #{id}
- </delete>
- <delete id="deleteBy" parameterType="cn.com.goldenwater.dcproj.model.Feedback">
- update GW_SYS_FEEDBACK set DATA_STAT='9' <include refid="page_where" />
- </delete>
- <update id="deleteInFlag" parameterType="java.lang.String">
- update GW_SYS_FEEDBACK set DATA_STAT = '9' where ID = #{id}
- </update>
- <update id="update" parameterType="cn.com.goldenwater.dcproj.model.Feedback">
- update GW_SYS_FEEDBACK
- <trim prefix="set" suffixOverrides=",">
- <if test="ptype != null and ptype != ''">PTYPE = #{ptype},</if>
- <if test="detail != null and detail != ''">DETAIL = #{detail},</if>
- <if test="uname != null and uname != ''">UNAME = #{uname},</if>
- <if test="phone != null and phone != ''">PHONE = #{phone},</if>
- <if test="remark != null and remark != ''">REMARK = #{remark},</if>
- <if test="state != null and state != ''">STATE = #{state},</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>
- </trim>
- <where>ID = #{id}</where>
- </update>
- <update id="updateBy" parameterType="cn.com.goldenwater.dcproj.model.Feedback">
- update GW_SYS_FEEDBACK
- <trim prefix="set" suffixOverrides=",">
- <if test="ptype != null and ptype != ''">PTYPE = #{ptype},</if>
- <if test="detail != null and detail != ''">DETAIL = #{detail},</if>
- <if test="uname != null and uname != ''">UNAME = #{uname},</if>
- <if test="phone != null and phone != ''">PHONE = #{phone},</if>
- <if test="remark != null and remark != ''">REMARK = #{remark},</if>
- <if test="state != null and state != ''">STATE = #{state},</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>
- </trim>
- <include refid="page_where" />
- </update>
- <!-- 其他自定义SQL -->
- </mapper>
|