123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <?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.ourwill.module.house.dao.daily.DailyRecordFoodbasicinfochecksFileDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordFoodbasicinfochecksFile" id="baseMap">
- <result column="id" property="id"/>
- <result column="uuid" property="uuid"/>
- <result column="foodbasicinfoId" property="foodbasicinfoId"/>
- <result column="checkTime" property="checkTime"/>
- <result column="water" property="water"/>
- <result column="boldfat" property="boldfat"/>
- <result column="glutenWater" property="glutenWater"/>
- <result column="checker" property="checker"/>
- <result column="cId" property="cId"/>
- <result column="uId" property="uId"/>
- <result column="cTime" property="cTime"/>
- <result column="uTime" property="uTime"/>
- <result column="version" property="version"/>
- <result column="houseId" property="houseId"/>
- <result column="eatScore" property="eatScore"/>
- <result column="file_uuid" property="fileUuid"/>
- </resultMap>
- <sql id="columns">
- id ,
- uuid ,
- foodbasicinfoId ,
- checkTime ,
- water ,
- boldfat ,
- glutenWater ,
- checker ,
- cId ,
- uId ,
- cTime ,
- uTime ,
- version ,
- houseId ,
- eatScore,
- file_uuid
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_foodbasicinfochecks_file a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_foodbasicinfochecks_file a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="foodbasicinfoId !=null">
- and foodbasicinfoId = #{foodbasicinfoId}
- </if>
- <if test="checkTime !=null">
- and checkTime = #{checkTime}
- </if>
- <if test="searchStartDate !=null">
- and STR_TO_DATE(checkTime, '%Y-%m-%d') <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and STR_TO_DATE(checkTime, '%Y-%m-%d') <= #{searchEndDate}
- </if>
- <if test="water !=null">
- and water = #{water}
- </if>
- <if test="boldfat !=null">
- and boldfat = #{boldfat}
- </if>
- <if test="glutenWater !=null">
- and glutenWater = #{glutenWater}
- </if>
- <if test="checker !=null">
- and checker = #{checker}
- </if>
- <if test="cId !=null">
- and cId = #{cId}
- </if>
- <if test="uId !=null">
- and uId = #{uId}
- </if>
- <if test="cTime !=null">
- and cTime = #{cTime}
- </if>
- <if test="uTime !=null">
- and uTime = #{uTime}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="eatScore !=null">
- and eatScore = #{eatScore}
- </if>
- <if test="fileUuid !=null">
- and file_uuid = #{fileUuid}
- </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.DailyRecordFoodbasicinfochecksFile">
- INSERT INTO daily_record_foodbasicinfochecks_file
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <!-- <if test=" id != null">
- id,
- </if>-->
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" foodbasicinfoId != null">
- foodbasicinfoId,
- </if>
- <if test=" checkTime != null">
- checkTime,
- </if>
- <if test=" water != null">
- water,
- </if>
- <if test=" boldfat != null">
- boldfat,
- </if>
- <if test=" glutenWater != null">
- glutenWater,
- </if>
- <if test=" checker != null">
- checker,
- </if>
- <if test=" cId != null">
- cId,
- </if>
- <if test=" uId != null">
- uId,
- </if>
- <if test=" cTime != null">
- cTime,
- </if>
- <if test=" uTime != null">
- uTime,
- </if>
- <if test=" version != null">
- version,
- </if>
- <if test=" houseId != null">
- houseId,
- </if>
- <if test=" eatScore != null">
- eatScore,
- </if>
- <if test=" fileUuid != null">
- file_uuid
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <!--<if test="id !=null">
- #{id},
- </if>-->
- <if test=" uuid != null">
- #{uuid}, </if>
- <if test=" foodbasicinfoId != null">
- #{foodbasicinfoId}, </if>
- <if test=" checkTime != null">
- #{checkTime}, </if>
- <if test=" water != null">
- #{water}, </if>
- <if test=" boldfat != null">
- #{boldfat}, </if>
- <if test=" glutenWater != null">
- #{glutenWater}, </if>
- <if test=" checker != null">
- #{checker}, </if>
- <if test=" cId != null">
- #{cId}, </if>
- <if test=" uId != null">
- #{uId}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" uTime != null">
- #{uTime}, </if>
- <if test=" version != null">
- #{version}, </if>
- <if test=" houseId != null">
- #{houseId}, </if>
- <if test=" eatScore != null">
- #{eatScore}, </if>
- <if test=" fileUuid != null">
- #{fileUuid}</if>
- </trim>
- </insert>
- </mapper>
|