123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- <?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.DailyRecordGrainregulationDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordGrainregulation" id="baseMap">
- <result column="id" property="id"/>
- <result column="grain_id" property="grainId"/>
- <result column="store_name" property="storeName"/>
- <result column="store_manager" property="storeManager"/>
- <result column="checked_date" property="checkedDate"/>
- <result column="headchecker_name" property="headcheckerName"/>
- <result column="checker_name" property="checkerName"/>
- <result column="have_problem" property="haveProblem"/>
- <result column="checked_problems" property="checkedProblems"/>
- <result column="explanation" property="explanation"/>
- <result column="have_passed" property="havePassed"/>
- <result column="have_changed" property="haveChanged"/>
- <result column="changed_explanation" property="changedExplanation"/>
- <result column="changed_date" property="changedDate"/>
- <result column="check_task" property="checkTask"/>
- <result column="answer_date" property="answerDate"/>
- <result column="operator" property="operator"/>
- <result column="exist_problems" property="existProblems"/>
- <result column="sync_flag" property="syncFlag"/>
- <result column="uuid" property="uuid"/>
- <result column="c_id" property="cId"/>
- <result column="c_time" property="cTime"/>
- <result column="u_id" property="uId"/>
- <result column="u_time" property="uTime"/>
- <result column="version" property="version"/>
- </resultMap>
- <sql id="columns">
- a.id,
- a.grain_id,
- a.store_name,
- a.store_manager,
- a.checked_date,
- a.headchecker_name,
- a.checker_name,
- a.have_problem,
- a.checked_problems,
- a.explanation,
- a.have_passed,
- a.have_changed,
- a.changed_explanation,
- a.changed_date,
- a.check_task,
- a.answer_date,
- a.operator,
- a.exist_problems,
- a.sync_flag,
- a.uuid,
- a.c_id,
- a.c_time,
- a.u_id,
- a.u_time,
- a.version
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM outstore_check a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM outstore_check a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM outstore_check a
- LEFT JOIN sys_grain sg ON a.grain_id=sg.id
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="grainId !=null">
- and a.grain_id = #{grainId}
- </if>
- <if test="cityId !=null and cityId !=''">
- and sg.parentId = #{cityId}
- </if>
- <if test="storeName !=null">
- and a.store_name <![CDATA[ >= ]]> #{storeName}
- </if>
- <if test="storeManager !=null">
- and a.store_manager = #{storeManager}
- </if>
- <if test="checkedDate !=null">
- and a.checked_date = #{checkedDate}
- </if>
- <if test="headcheckerName !=null">
- and a.headchecker_name = #{headcheckerName}
- </if>
- <if test="checkerName !=null">
- and a.checker_name = #{checkerName}
- </if>
- <if test="haveProblem !=null">
- and a.have_problem = #{haveProblem}
- </if>
- <if test="checkedProblems !=null">
- and a.checked_problems = #{checkedProblems}
- </if>
- <if test="explanation !=null">
- and a.explanation = #{explanation}
- </if>
- <if test="havePassed !=null">
- and a.have_passed = #{havePassed}
- </if>
- <if test="haveChanged !=null">
- and a.have_changed = #{haveChanged}
- </if>
- <if test="changedExplanation !=null">
- and a.changed_explanation = #{changedExplanation}
- </if>
- <if test="changedDate !=null">
- and a.changed_date = #{changedDate}
- </if>
- <if test="checkTask !=null">
- and a.check_task = #{checkTask}
- </if>
- <if test="answerDate !=null">
- and a.answer_date = #{answerDate}
- </if>
- <if test="operator !=null">
- and a.operator = #{operator}
- </if>
- <if test="existProblems !=null">
- and a.exist_problems = #{existProblems}
- </if>
- <if test="searchStartDate !=null">
- and a.checked_date <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and a.checked_date <= #{searchEndDate}
- </if>
- <if test="syncFlag !=null">
- and a.sync_flag = #{syncFlag}
- </if>
- <if test="uuid !=null">
- and a.uuid = #{uuid}
- </if>
- <if test="cId !=null">
- and a.c_id = #{cId}
- </if>
- <if test="cTime !=null">
- and a.c_time = #{cTime}
- </if>
- <if test="uId !=null">
- and a.u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and a.u_time = #{uTime}
- </if>
- <if test="version !=null">
- and a.version = #{version}
- </if>
- <if test="cityId !=null">
- and sg.parentId = #{cityId}
- </if>
- </where>
- <!--<where>
- <if test="storeName !=null">
- and a.store_name <![CDATA[ >= ]]> #{storeName}
- </if>
- <if test="searchStartDate !=null">
- and a.checked_date <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and a.checked_date <= #{searchEndDate}
- </if>
- </where>-->
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- order by id desc
- </otherwise>
- </choose>
- </select>
- <update id="updateByUuid" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordGrainregulation">
- UPDATE outstore_check <set>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test="grainId != null">
- grain_id= #{grainId} ,
- </if>
- <if test="storeName != null">
- store_name= #{storeName} ,
- </if>
- <if test="storeManager != null">
- store_manager= #{storeManager} ,
- </if>
- <if test="checkedDate != null">
- checked_date= #{checkedDate} ,
- </if>
- <if test="headcheckerName != null">
- headchecker_name= #{headcheckerName} ,
- </if>
- <if test="checkerName != null">
- checker_name= #{checkerName} ,
- </if>
- <if test="checkTask != null">
- check_task= #{checkTask} ,
- </if>
- <if test="haveProblem != null">
- have_problem= #{haveProblem} ,
- </if>
- <if test="checkedProblems != null">
- checked_problems= #{checkedProblems} ,
- </if>
- <if test="explanation != null">
- explanation= #{explanation} ,
- </if>
- <if test="havePassed != null">
- have_passed= #{havePassed} ,
- </if>
- <if test="haveChanged != null">
- have_changed= #{haveChanged} ,
- </if>
- <if test="answerDate != null">
- answer_date= #{answerDate} ,
- </if>
- <if test="changedExplanation != null">
- changed_explanation= #{changedExplanation} ,
- </if>
- <if test="changedDate != null">
- changed_date= #{changedDate} ,
- </if>
- <if test="operator != null">
- operator= #{operator} ,
- </if>
- <if test="cId != null">
- c_id= #{cId} ,
- </if>
- <if test="cTime != null">
- c_time= #{cTime} ,
- </if>
- <if test="uId != null">
- u_id= #{uId} ,
- </if>
- <if test="uTime != null">
- u_time= #{uTime} ,
- </if>
- <if test="version !=null">
- version = #{version} ,
- </if>
- <if test="syncFlag !=null">
- sync_flag = #{syncFlag} ,
- </if>
- <if test="existProblems !=null">
- exist_problems = #{existProblems} ,
- </if>
- </set>
- WHERE uuid = #{uuid}
- </update>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.daily.DailyRecordGrainregulation">
- INSERT INTO outstore_check
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test="uuid != null">
- uuid,
- </if>
- <if test="grainId != null">
- grain_id,
- </if>
- <if test="storeName != null">
- store_name,
- </if>
- <if test="storeManager != null">
- store_manager,
- </if>
- <if test="checkedDate != null">
- checked_date,
- </if>
- <if test="headcheckerName != null">
- headchecker_name,
- </if>
- <if test="checkerName != null">
- checker_name,
- </if>
- <if test="checkTask != null">
- check_task,
- </if>
- <if test="haveProblem != null">
- have_problem,
- </if>
- <if test="checkedProblems != null">
- checked_problems,
- </if>
- <if test="explanation != null">
- explanation,
- </if>
- <if test="havePassed != null">
- have_passed,
- </if>
- <if test="haveChanged != null">
- have_changed,
- </if>
- <if test="answerDate != null">
- answer_date,
- </if>
- <if test="changedExplanation != null">
- changed_explanation,
- </if>
- <if test="changedDate != null">
- changed_date,
- </if>
- <if test="operator != null">
- operator,
- </if>
- <if test="cId != null">
- c_id,
- </if>
- <if test="cTime != null">
- c_time,
- </if>
- <if test="uId != null">
- u_id,
- </if>
- <if test="uTime != null">
- u_time,
- </if>
- <if test="version !=null">
- version,
- </if>
- <if test="syncFlag !=null">
- sync_flag,
- </if>
- <if test="existProblems !=null">
- exist_problems,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id},
- </if>
- <if test="uuid != null">
- #{uuid} ,
- </if>
- <if test="grainId != null">
- #{grainId} ,
- </if>
- <if test="storeName != null">
- #{storeName} ,
- </if>
- <if test="storeManager != null">
- #{storeManager} ,
- </if>
- <if test="checkedDate != null">
- #{checkedDate} ,
- </if>
- <if test="headcheckerName != null">
- #{headcheckerName} ,
- </if>
- <if test="checkerName != null">
- #{checkerName} ,
- </if>
- <if test="checkTask != null">
- #{checkTask} ,
- </if>
- <if test="haveProblem != null">
- #{haveProblem} ,
- </if>
- <if test="checkedProblems != null">
- #{checkedProblems} ,
- </if>
- <if test="explanation != null">
- #{explanation} ,
- </if>
- <if test="havePassed != null">
- #{havePassed} ,
- </if>
- <if test="haveChanged != null">
- #{haveChanged} ,
- </if>
- <if test="answerDate != null">
- #{answerDate} ,
- </if>
- <if test="changedExplanation != null">
- #{changedExplanation} ,
- </if>
- <if test="changedDate != null">
- #{changedDate} ,
- </if>
- <if test="operator != null">
- #{operator} ,
- </if>
- <if test="cId != null">
- #{cId} ,
- </if>
- <if test="cTime != null">
- #{cTime} ,
- </if>
- <if test="uId != null">
- #{uId} ,
- </if>
- <if test="uTime != null">
- #{uTime} ,
- </if>
- <if test="version !=null">
- #{version} ,
- </if>
- <if test="syncFlag !=null">
- #{syncFlag} ,
- </if>
- <if test="existProblems !=null">
- #{existProblems} ,
- </if>
- </trim>
- </insert>
- </mapper>
|