123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="cn.ourwill.module.house.dao.daily.DailyRecordTonicDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordTonic" id="baseMap">
- <result column="id" property="id"/>
- <result column="task_id" property="taskId"/>
- <result column="tonic_amount" property="tonicAmount"/>
- <result column="tonic_date" property="tonicDate"/>
- <result column="totalTonicAmount" property="totalTonicAmount"/>
- <result column="tonicFrequency" property="tonicFrequency"/>
- <result column="task_uuid" property="taskUuid"/>
- <result column="uuid" property="uuid"/>
- <result column="sync_flag" property="syncFlag"/>
- </resultMap>
- <sql id="columns">
- id ,
- task_id ,
- tonic_amount ,
- tonic_date ,
- totalTonicAmount ,
- tonicFrequency,
- task_uuid,
- uuid,
- sync_flag
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_tonic a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_tonic a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_tonic a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="taskId !=null">
- and task_id = #{taskId}
- </if>
- <if test="tonicAmount !=null">
- and tonic_amount = #{tonicAmount}
- </if>
- <if test="tonicDate !=null">
- and tonic_date = #{tonicDate}
- </if>
- <if test="totalTonicAmount !=null">
- and totalTonicAmount = #{totalTonicAmount}
- </if>
- <if test="tonicFrequency !=null">
- and tonicFrequency = #{tonicFrequency}
- </if>
- <if test="taskUuid !=null">
- and task_uuid = #{taskUuid}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="syncFlag !=null">
- and sync_flag = #{syncFlag}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <select id="findAllList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_tonic a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="taskId !=null">
- and task_id = #{taskId}
- </if>
- <if test="tonicAmount !=null">
- and tonic_amount = #{tonicAmount}
- </if>
- <if test="tonicDate !=null">
- and tonic_date = #{tonicDate}
- </if>
- <if test="totalTonicAmount !=null">
- and totalTonicAmount = #{totalTonicAmount}
- </if>
- <if test="tonicFrequency !=null">
- and tonicFrequency = #{tonicFrequency}
- </if>
- <if test="taskUuid !=null">
- and task_uuid = #{taskUuid}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="syncFlag !=null">
- and sync_flag = #{syncFlag}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.daily.DailyRecordTonic">
- INSERT INTO daily_record_tonic
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" taskId != null">
- task_id,
- </if>
- <if test=" tonicAmount != null">
- tonic_amount,
- </if>
- <if test=" tonicDate != null">
- tonic_date,
- </if>
- <if test=" totalTonicAmount != null">
- totalTonicAmount,
- </if>
- <if test=" tonicFrequency != null">
- tonicFrequency,
- </if>
- <if test="taskUuid !=null">
- task_uuid,
- </if>
- <if test="uuid !=null">
- uuid
- </if>
- <!-- <if test="syncFlag !=null">
- sync_flag
- </if>-->
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" taskId != null">
- #{taskId}, </if>
- <if test=" tonicAmount != null">
- #{tonicAmount}, </if>
- <if test=" tonicDate != null">
- #{tonicDate}, </if>
- <if test=" totalTonicAmount != null">
- #{totalTonicAmount}, </if>
- <if test=" tonicFrequency != null">
- #{tonicFrequency}, </if>
- <if test="taskUuid !=null">
- #{taskUuid},
- </if>
- <if test="uuid !=null">
- #{uuid}
- </if>
- <!--<if test="syncFlag !=null">
- #{syncFlag}
- </if>-->
- </trim>
- </insert>
- <update id="updateByUuid" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordTonic">
- UPDATE daily_record_tonic <set>
- <if test="taskId != null">
- task_id= #{taskId} ,
- </if>
- <if test="tonicAmount != null">
- tonic_amount= #{tonicAmount} ,
- </if>
- <if test="tonicDate != null">
- tonic_date= #{tonicDate} ,
- </if>
- <if test="totalTonicAmount != null">
- totalTonicAmount= #{totalTonicAmount} ,
- </if>
- <if test="tonicFrequency != null">
- tonicFrequency= #{tonicFrequency},
- </if>
- <if test="taskUuid !=null">
- task_uuid = #{taskUuid},
- </if>
- <!--<if test="syncFlag !=null">
- sync_flag=#{syncFlag},
- </if>-->
- <if test="uuid !=null">
- uuid=#{uuid}
- </if>
- </set>
- WHERE uuid = #{uuid}
- </update>
- <update id="update" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordTonic">
- UPDATE daily_record_tonic <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="taskId != null">
- task_id= #{taskId} ,
- </if>
- <if test="tonicAmount != null">
- tonic_amount= #{tonicAmount} ,
- </if>
- <if test="tonicDate != null">
- tonic_date= #{tonicDate} ,
- </if>
- <if test="totalTonicAmount != null">
- totalTonicAmount= #{totalTonicAmount} ,
- </if>
- <if test="tonicFrequency != null">
- tonicFrequency= #{tonicFrequency},
- </if>
- <if test="taskUuid !=null">
- task_uuid = #{taskUuid},
- </if>
- <if test="uuid !=null">
- uuid = #{uuid},
- </if>
- <if test="syncFlag !=null">
- sync_flag = #{syncFlag}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM daily_record_tonic WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM daily_record_tonic WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|