123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- <?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.CheckRulesDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.CheckRules" id="baseMap">
- <result column="id" property="id"/>
- <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"/>
- <result column="checkrule_name" property="checkRuleName"/>
- <result column="checkrule_author" property="checkRuleAuthor"/>
- <result column="checkrule_date" property="checkRuleDate"/>
- <result column="checkrule_grain_id" property="checkRuleGrainId"/>
- <result column="checkrule_grain_name" property="checkRuleGrainName"/>
- <result column="checkrule_post_code" property="checkRulePostCode"/>
- <result column="checkrule_post_name" property="checkRulePostName"/>
- <result column="checkrule_startdate" property="checkRuleStartDate"/>
- <result column="checkrule_enddate" property="checkRuleEndDate"/>
- <result column="checkrule_used" property="checkRuleUsed"/>
- <result column="checkrule_domain" property="checkRuleDomain"/>
- <result column="checkrule_unit" property="checkRuleUnit"/>
- <result column="checkrule_number" property="checkRuleNumber"/>
- </resultMap>
- <sql id="columns">
- id,
- checkrule_name,
- checkrule_author,
- checkrule_date,
- checkrule_grain_id,
- checkrule_grain_name,
- checkrule_post_code,
- checkrule_post_name,
- checkrule_startdate,
- checkrule_enddate,
- checkrule_used,
- checkrule_domain,
- checkrule_unit,
- checkrule_number,
- uuid,
- c_time,
- c_id,
- u_time,
- u_id,
- version
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM checkrules a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM checkrules a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM checkrules a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="checkRuleName !=null">
- and checkrule_name = #{checkRuleName}
- </if>
- <if test="checkRuleAuthor !=null">
- and checkrule_author = #{checkRuleAuthor}
- </if>
- <if test="checkRuleDate !=null">
- and checkrule_date = #{checkRuleDate}
- </if>
- <if test="checkRuleGrainId !=null">
- and checkrule_grain_id = #{checkRuleGrainId}
- </if>
- <if test="checkRuleGrainName !=null">
- and checkrule_grain_name = #{checkRuleGrainName}
- </if>
- <if test="checkRulePostCode !=null">
- and checkrule_post_code = #{checkRulePostCode}
- </if>
- <if test="checkRulePostName !=null">
- and checkrule_post_name = #{checkRulePostName}
- </if>
- <if test="checkRuleStartDate !=null">
- and checkrule_startdate = #{checkRuleStartDate}
- </if>
- <if test="checkRuleEndDate !=null">
- and checkrule_enddate = #{checkRuleEndDate}
- </if>
- <if test="checkRuleUsed !=null">
- and checkrule_used = #{checkRuleUsed}
- </if>
- <if test="checkRuleDomain !=null">
- and checkrule_domain = #{checkRuleDomain}
- </if>
- <if test="checkRuleUnit !=null">
- and checkrule_unit = #{checkRuleUnit}
- </if>
- <if test="checkRuleNumber !=null">
- and checkrule_number = #{checkRuleNumber}
- </if>
- <if test="cTime !=null">
- and c_time = #{cTime}
- </if>
- <if test="cId !=null">
- and c_id = #{cId}
- </if>
- <if test="uTime !=null">
- and u_time = #{uTime}
- </if>
- <if test="uId !=null">
- and u_id = #{uId}
- </if>
- <if test="version !=null">
- and version = #{version}
- </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="findBkList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM checkrules a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="checkRuleName !=null">
- and checkrule_name = #{checkRuleName}
- </if>
- <if test="checkRuleAuthor !=null">
- and checkrule_author = #{checkRuleAuthor}
- </if>
- <if test="checkRuleDate !=null">
- and checkrule_date = #{checkRuleDate}
- </if>
- <if test="checkRuleGrainId !=null">
- and checkrule_grain_id in (SELECT id FROM sys_grain a WHERE parentId = #{checkRuleGrainId} OR parentId IN (SELECT id FROM sys_grain WHERE parentId = #{checkRuleGrainId} AND NAME LIKE '%库外储粮%'))
- </if>
- <if test="checkRuleGrainName !=null">
- and checkrule_grain_name = #{checkRuleGrainName}
- </if>
- <if test="checkRulePostCode !=null">
- and checkrule_post_code = #{checkRulePostCode}
- </if>
- <if test="checkRulePostName !=null">
- and checkrule_post_name = #{checkRulePostName}
- </if>
- <if test="checkRuleStartDate !=null">
- and checkrule_startdate = #{checkRuleStartDate}
- </if>
- <if test="checkRuleEndDate !=null">
- and checkrule_enddate = #{checkRuleEndDate}
- </if>
- <if test="checkRuleUsed !=null">
- and checkrule_used = #{checkRuleUsed}
- </if>
- <if test="checkRuleDomain !=null">
- and checkrule_domain = #{checkRuleDomain}
- </if>
- <if test="checkRuleUnit !=null">
- and checkrule_unit = #{checkRuleUnit}
- </if>
- <if test="checkRuleNumber !=null">
- and checkrule_number = #{checkRuleNumber}
- </if>
- <if test="cTime !=null">
- and c_time = #{cTime}
- </if>
- <if test="cId !=null">
- and c_id = #{cId}
- </if>
- <if test="uTime !=null">
- and u_time = #{uTime}
- </if>
- <if test="uId !=null">
- and u_id = #{uId}
- </if>
- <if test="version !=null">
- and version = #{version}
- </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="getTreeList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM checkrules a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="checkRuleName !=null">
- and checkrule_name = #{checkRuleName}
- </if>
- <if test="checkRuleAuthor !=null">
- and checkrule_author = #{checkRuleAuthor}
- </if>
- <if test="checkRuleDate !=null">
- and checkrule_date = #{checkRuleDate}
- </if>
- <if test="checkRuleGrainId !=null">
- and checkrule_grain_id = #{checkRuleGrainId}
- </if>
- <if test="checkRuleGrainName !=null">
- and checkrule_grain_name = #{checkRuleGrainName}
- </if>
- <if test="checkRulePostCode !=null">
- and checkrule_post_code = #{checkRulePostCode}
- </if>
- <if test="checkRulePostName !=null">
- and checkrule_post_name = #{checkRulePostName}
- </if>
- <if test="checkRuleStartDate !=null">
- and checkrule_startdate = #{checkRuleStartDate}
- </if>
- <if test="checkRuleEndDate !=null">
- and checkrule_enddate = #{checkRuleEndDate}
- </if>
- <if test="checkRuleUsed !=null">
- and checkrule_used = #{checkRuleUsed}
- </if>
- <if test="checkRuleDomain !=null">
- and checkrule_domain = #{checkRuleDomain}
- </if>
- <if test="checkRuleUnit !=null">
- and checkrule_unit = #{checkRuleUnit}
- </if>
- <if test="checkRuleNumber !=null">
- and checkrule_number = #{checkRuleNumber}
- </if>
- <if test="cTime !=null">
- and c_time = #{cTime}
- </if>
- <if test="cId !=null">
- and c_id = #{cId}
- </if>
- <if test="uTime !=null">
- and u_time = #{uTime}
- </if>
- <if test="uId !=null">
- and u_id = #{uId}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- </where>
- </select>
- <select id="getBkTreeList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM checkrules a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="checkRuleName !=null">
- and checkrule_name = #{checkRuleName}
- </if>
- <if test="checkRuleAuthor !=null">
- and checkrule_author = #{checkRuleAuthor}
- </if>
- <if test="checkRuleDate !=null">
- and checkrule_date = #{checkRuleDate}
- </if>
- <if test="checkRuleGrainId !=null">
- and checkrule_grain_id in (SELECT id FROM sys_grain a WHERE parentId = #{checkRuleGrainId} OR parentId IN (SELECT id FROM sys_grain WHERE parentId = #{checkRuleGrainId} AND NAME LIKE '%库外储粮%'))
- </if>
- <if test="checkRuleGrainName !=null">
- and checkrule_grain_name = #{checkRuleGrainName}
- </if>
- <if test="checkRulePostCode !=null">
- and checkrule_post_code = #{checkRulePostCode}
- </if>
- <if test="checkRulePostName !=null">
- and checkrule_post_name = #{checkRulePostName}
- </if>
- <if test="checkRuleStartDate !=null">
- and checkrule_startdate = #{checkRuleStartDate}
- </if>
- <if test="checkRuleEndDate !=null">
- and checkrule_enddate = #{checkRuleEndDate}
- </if>
- <if test="checkRuleUsed !=null">
- and checkrule_used = #{checkRuleUsed}
- </if>
- <if test="checkRuleDomain !=null">
- and checkrule_domain = #{checkRuleDomain}
- </if>
- <if test="checkRuleUnit !=null">
- and checkrule_unit = #{checkRuleUnit}
- </if>
- <if test="checkRuleNumber !=null">
- and checkrule_number = #{checkRuleNumber}
- </if>
- <if test="cTime !=null">
- and c_time = #{cTime}
- </if>
- <if test="cId !=null">
- and c_id = #{cId}
- </if>
- <if test="uTime !=null">
- and u_time = #{uTime}
- </if>
- <if test="uId !=null">
- and u_id = #{uId}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- </where>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.daily.CheckDomain">
- INSERT INTO checkrules
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" checkRuleName != null">
- checkrule_name,
- </if>
- <if test=" checkRuleAuthor != null">
- checkrule_author,
- </if>
- <if test=" checkRuleDate != null">
- checkrule_date,
- </if>
- <if test=" checkRuleGrainId != null">
- checkrule_grain_id,
- </if>
- <if test=" checkRuleGrainName != null">
- checkrule_grain_name,
- </if>
- <if test=" checkRulePostCode != null">
- checkrule_post_code,
- </if>
- <if test=" checkRulePostName != null">
- checkrule_post_name,
- </if>
- <if test=" checkRuleStartDate != null">
- checkrule_startdate,
- </if>
- <if test=" checkRuleEndDate != null">
- checkrule_enddate,
- </if>
- <if test=" checkRuleUsed != null">
- checkrule_used,
- </if>
- <if test=" checkRuleDomain != null">
- checkrule_domain,
- </if>
- <if test=" checkRuleUnit != null">
- checkrule_unit,
- </if>
- <if test=" checkRuleNumber != null">
- checkrule_number,
- </if>
- <if test=" cTime != null">
- c_time,
- </if>
- <if test=" cId != null">
- c_id,
- </if>
- <if test=" uTime != null">
- u_time,
- </if>
- <if test=" uId != null">
- u_id,
- </if>
- <if test=" version != null">
- version
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id},
- </if>
- <if test=" uuid != null">
- #{uuid},
- </if>
- <if test=" checkRuleName != null">
- #{checkRuleName},
- </if>
- <if test=" checkRuleAuthor != null">
- #{checkRuleAuthor},
- </if>
- <if test=" checkRuleDate != null">
- #{checkRuleDate},
- </if>
- <if test=" checkRuleGrainId != null">
- #{checkRuleGrainId},
- </if>
- <if test=" checkRuleGrainName != null">
- #{checkRuleGrainName},
- </if>
- <if test=" checkRulePostCode != null">
- #{checkRulePostCode},
- </if>
- <if test=" checkRulePostName != null">
- #{checkRulePostName},
- </if>
- <if test=" checkRuleStartDate != null">
- #{checkRuleStartDate},
- </if>
- <if test=" checkRuleEndDate != null">
- #{checkRuleEndDate},
- </if>
- <if test=" checkRuleUsed != null">
- #{checkRuleUsed},
- </if>
- <if test=" checkRuleDomain != null">
- #{checkRuleDomain},
- </if>
- <if test=" checkRuleUnit != null">
- #{checkRuleUnit},
- </if>
- <if test=" checkRuleNumber != null">
- #{checkRuleNumber},
- </if>
- <if test=" cTime != null">
- #{cTime},
- </if>
- <if test=" cId != null">
- #{cId},
- </if>
- <if test=" uTime != null">
- #{uTime},
- </if>
- <if test=" uId != null">
- #{uId},
- </if>
- <if test=" version != null">
- #{version}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.daily.CheckDomain">
- UPDATE checkrules
- <set>
- <if test=" checkRuleName != null">
- checkrule_name = #{checkRuleName},
- </if>
- <if test=" checkRuleAuthor != null">
- checkrule_author = #{checkRuleAuthor},
- </if>
- <if test=" checkRuleDate != null">
- checkrule_date = #{checkRuleDate},
- </if>
- <if test=" checkRuleGrainId != null">
- checkrule_grain_id = #{checkRuleGrainId},
- </if>
- <if test=" checkRuleGrainName != null">
- checkrule_grain_name = #{checkRuleGrainName},
- </if>
- <if test=" checkRulePostCode != null">
- checkrule_post_code = #{checkRulePostCode},
- </if>
- <if test=" checkRulePostName != null">
- checkrule_post_name = #{checkRulePostName},
- </if>
- <if test=" checkRuleStartDate != null">
- checkrule_startdate = #{checkRuleStartDate},
- </if>
- <if test=" checkRuleEndDate != null">
- checkrule_enddate = #{checkRuleEndDate},
- </if>
- <if test=" checkRuleUsed != null">
- checkrule_used = #{checkRuleUsed},
- </if>
- <if test=" checkRuleDomain != null">
- checkrule_domain = #{checkRuleDomain},
- </if>
- <if test=" checkRuleUnit != null">
- checkrule_unit = #{checkRuleUnit},
- </if>
- <if test=" checkRuleNumber != null">
- checkrule_number = #{checkRuleNumber},
- </if>
- <if test="cTime != null">
- c_time= #{cTime} ,
- </if>
- <if test="cId != null">
- c_id= #{cId} ,
- </if>
- <if test="uTime != null">
- u_time= #{uTime} ,
- </if>
- <if test="uId != null">
- u_id= #{uId} ,
- </if>
- <if test="version != null">
- version= #{version}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM checkrules
- WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM checkrules WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|