123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576 |
- <?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.new_dao.DmDeviceSpotNewDao" >
- <resultMap type="cn.ourwill.module.house.entity.new_entity.DmDeviceSpotNew" id="baseMap">
- <id column="id" property="id" />
- <result column="grain_id" property="grainId" />
- <result column="spot_date" property="spotDate" />
- <result column="spot_user" property="spotUser"/>
- <result column="spot_remark" property="spotRemark" />
- <result column="spot_idea" property="spotIdea"/>
- <result column="depart_idea" property="departIdea" />
- <result column="depart_state" property="departState" />
- <result column="sate" property="sate"/>
- <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="model_uuid" property="modelUuid" />
- <result column="content_point_one" property="contentPointOne" />
- <result column="content_point_two" property="contentPointTwo" />
- <result column="content_point_three" property="contentPointThree" />
- <result column="inspection_result_one" property="inspectionResultOne" />
- <result column="inspection_result_two" property="inspectionResultTwo" />
- <result column="inspection_result_three" property="inspectionResultThree" />
- <result column="processing_opinion_one" property="processingOpinionOne" />
- <result column="processing_opinion_two" property="processingOpinionTwo" />
- <result column="processing_opinion_three" property="processingOpinionThree" />
- <result column="device_id" property="deviceId" />
- </resultMap>
- <resultMap type="cn.ourwill.module.house.entity.dm.Device" id="mapOfFind" extends="baseMap">
- <result column="name" property="grainName"/>
- <result column="device_name" property="deviceName"/>
- <result column="device_model" property="deviceModel"/>
- <result column="device_no" property="deviceNo"/>
- <result column="asset_number" property="assetNumber"/>
- </resultMap>
- <sql id="columns">
- a.id,
- a.spot_date,
- a.spot_user,
- a.spot_remark,
- a.spot_idea,
- a.depart_idea,
- a.depart_state,
- a.sate,
- a.uuid,
- a.model_uuid,
- a.content_point_one,
- a.content_point_two,
- a.content_point_three,
- a.inspection_result_one,
- a.inspection_result_two,
- a.inspection_result_three,
- a.processing_opinion_one,
- a.processing_opinion_two,
- a.processing_opinion_three,
- a.device_id,
- a.grain_id
- </sql>
- <sql id = "columsOfFindd">
- sg.name AS grainName,
- /*ddm.grain_id,
- ddm.device_name,
- ddm.device_model,
- ddm.device_manager ,
- ddm.collator,
- dd.device_no,
- dd.asset_number,*/
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columsOfFindd"/>
- <include refid="columns"/>
- FROM dm_device_spot_new a
- LEFT JOIN sys_grain sg ON sg.id = a.grain_id
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <!--<select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM dm_device_spot_new a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>-->
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columsOfFindd"/>
- <include refid="columns"/>
- FROM dm_device_spot_new a
- /*LEFT JOIN dm_device_model ddm ON a.model_uuid = ddm.uuid
- LEFT JOIN dm_device dd ON a.device_id = dd.id*/
- LEFT JOIN sys_grain sg ON sg.id = a.grain_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="grainName !=null">
- and sg.name = #{grainName}
- </if>
- <!--<if test="deviceName !=null">
- and ddm.device_name = #{deviceName}
- </if>
- <if test="deviceModel !=null">
- and ddm.device_model = #{deviceModel}
- </if>
- <if test="assetNumber !=null">
- and dd.asset_number = #{assetNumber}
- </if>
- <if test="deviceNo !=null">
- and dd.device_no = #{deviceNo}
- </if>-->
- <if test="spotDate !=null">
- and a.spot_date = #{spotDate}
- </if>
- <if test="spotUser !=null">
- and a.spot_user = #{spotUser}
- </if>
- <if test="spotDate !=null">
- and a.spot_date = #{spotDate}
- </if>
- <if test="spotRemark !=null">
- and a.spot_remark = #{spotRemark}
- </if>
- <if test="spotIdea !=null">
- and a.spot_idea = #{spotIdea}
- </if>
- <if test="departIdea !=null">
- and a.depart_idea = #{departIdea}
- </if>
- <if test="departState !=null">
- and a.depart_state = #{departState}
- </if>
- <if test="sate !=null">
- and a.sate = #{sate}
- </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="modelUuid !=null">
- and a.model_uuid = #{modelUuid}
- </if>
- <if test="contentPointOne !=null">
- and a.content_point_one = #{contentPointOne}
- </if>
- <if test="contentPointTwo !=null">
- and a.content_point_two = #{contentPointTwo}
- </if>
- <if test="contentPointThree !=null">
- and a.content_point_three = #{contentPointThree}
- </if>
- <if test="inspectionResultOne !=null">
- and a.inspection_result_one = #{inspectionResultOne}
- </if>
- <if test="inspectionResultTwo !=null">
- and a.inspection_result_two = #{inspectionResultTwo}
- </if>
- <if test="inspectionResultThree !=null">
- and a.inspection_result_three = #{inspectionResultThree}
- </if>
- <if test="processingOpinionOne !=null">
- and a.processing_opinion_one = #{processingOpinionOne}
- </if>
- <if test="processingOpinionTwo !=null">
- and a.processing_opinion_two = #{processingOpinionTwo}
- </if>
- <if test="processingOpinionThree !=null">
- and a.processing_opinion_three = #{processingOpinionThree}
- </if>
- <if test="deviceId !=null">
- and a.device_id = #{deviceId}
- </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="mapOfFind">
- SELECT
- <include refid="columsOfFindd"/>
- <include refid="columns"/>
- FROM dm_device_spot_new a
- LEFT JOIN dm_device_model ddm ON a.model_uuid = ddm.uuid
- LEFT JOIN dm_device dd ON a.device_id = dd.id
- LEFT JOIN sys_grain sg ON sg.id = ddm.grain_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="grainName !=null">
- and sg.name = #{grainName}
- </if>
- <if test="deviceName !=null">
- and ddm.device_name = #{deviceName}
- </if>
- <if test="deviceModel !=null">
- and ddm.device_model = #{deviceModel}
- </if>
- <if test="assetNumber !=null">
- and dd.asset_number = #{assetNumber}
- </if>
- <if test="deviceNo !=null">
- and dd.device_no = #{deviceNo}
- </if>
- <if test="spotDate !=null">
- and a.spot_date = #{spotDate}
- </if>
- <if test="spotUser !=null">
- and a.spot_user = #{spotUser}
- </if>
- <if test="spotRemark !=null">
- and a.spot_remark = #{spotRemark}
- </if>
- <if test="spotIdea !=null">
- and a.spot_idea = #{spotIdea}
- </if>
- <if test="departIdea !=null">
- and a.depart_idea = #{departIdea}
- </if>
- <if test="departState !=null">
- and a.depart_state = #{departState}
- </if>
- <if test="sate !=null">
- and a.sate = #{sate}
- </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="modelUuid !=null">
- and a.model_uuid = #{modelUuid}
- </if>
- <if test="contentPointOne !=null">
- and a.content_point_one = #{contentPointOne}
- </if>
- <if test="contentPointTwo !=null">
- and a.content_point_two = #{contentPointTwo}
- </if>
- <if test="contentPointThree !=null">
- and a.content_point_three = #{contentPointThree}
- </if>
- <if test="inspectionResultOne !=null">
- and a.inspection_result_one = #{inspectionResultOne}
- </if>
- <if test="inspectionResultTwo !=null">
- and a.inspection_result_two = #{inspectionResultTwo}
- </if>
- <if test="inspectionResultThree !=null">
- and a.inspection_result_three = #{inspectionResultThree}
- </if>
- <if test="processingOpinionOne !=null">
- and a.processing_opinion_one = #{processingOpinionOne}
- </if>
- <if test="processingOpinionTwo !=null">
- and a.processing_opinion_two = #{processingOpinionTwo}
- </if>
- <if test="processingOpinionThree !=null">
- and a.processing_opinion_three = #{processingOpinionThree}
- </if>
- <if test="deviceId !=null">
- and a.device_id = #{deviceId}
- </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.new_entity.DmDeviceSpotNew">
- INSERT INTO dm_device_spot_new
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test="grainId !=null">
- grain_id ,
- </if>
- <if test="spotDate !=null">
- spot_date ,
- </if>
- <if test="spotUser !=null">
- spot_user ,
- </if>
- <if test="spotRemark !=null">
- spot_remark ,
- </if>
- <if test="spotIdea !=null">
- spot_idea ,
- </if>
- <if test="departIdea !=null">
- depart_idea ,
- </if>
- <if test="departState !=null">
- depart_state,
- </if>
- <if test="sate !=null">
- sate ,
- </if>
- <if test="uuid !=null">
- uuid ,
- </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="modelUuid !=null">
- model_uuid ,
- </if>
- <if test="contentPointOne !=null">
- content_point_one ,
- </if>
- <if test="contentPointTwo !=null">
- content_point_two ,
- </if>
- <if test="contentPointThree !=null">
- content_point_three ,
- </if>
- <if test="inspectionResultOne !=null">
- inspection_result_one ,
- </if>
- <if test="inspectionResultTwo !=null">
- inspection_result_two ,
- </if>
- <if test="inspectionResultThree !=null">
- inspection_result_three ,
- </if>
- <if test="processingOpinionOne !=null">
- processing_opinion_one ,
- </if>
- <if test="processingOpinionTwo !=null">
- processing_opinion_two ,
- </if>
- <if test="processingOpinionThree !=null">
- processing_opinion_three,
- </if>
- <if test="deviceId !=null">
- device_id
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test="grainId !=null">
- #{grainId},
- </if>
- <if test="grainName !=null">
- #{grainName},
- </if>
- <if test="spotDate !=null">
- #{spotDate},
- </if>
- <if test="spotUser !=null">
- #{spotUser},
- </if>
- <if test="spotRemark !=null">
- #{spotRemark},
- </if>
- <if test="spotIdea !=null">
- #{spotIdea},
- </if>
- <if test="departIdea !=null">
- #{departIdea},
- </if>
- <if test="departState !=null">
- #{departState},
- </if>
- <if test="sate !=null">
- #{sate},
- </if>
- <if test="uuid !=null">
- #{uuid},
- </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="modelUuid !=null">
- #{modelUuid},
- </if>
- <if test="contentPointOne !=null">
- #{contentPointOne},
- </if>
- <if test="contentPointTwo !=null">
- #{contentPointTwo},
- </if>
- <if test="contentPointThree !=null">
- #{contentPointThree},
- </if>
- <if test="inspectionResultOne !=null">
- #{inspectionResultOne},
- </if>
- <if test="inspectionResultTwo !=null">
- #{inspectionResultTwo},
- </if>
- <if test="inspectionResultThree !=null">
- #{inspectionResultThree},
- </if>
- <if test="processingOpinionOne !=null">
- #{processingOpinionOne},
- </if>
- <if test="processingOpinionTwo !=null">
- #{processingOpinionTwo},
- </if>
- <if test="processingOpinionThree !=null">
- #{processingOpinionThree},
- </if>
- <if test="deviceId !=null">
- #{deviceId}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.new_entity.DmDeviceSpotNew">
- UPDATE dm_device_spot_new <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="grainId !=null">
- grain_id = #{grainId},
- </if>
- <if test="spotDate !=null">
- spot_date = #{spotDate},
- </if>
- <if test="spotUser !=null">
- spot_user = #{spotUser},
- </if>
- <if test="spotRemark !=null">
- spot_remark = #{spotRemark},
- </if>
- <if test="spotIdea !=null">
- spot_idea = #{spotIdea},
- </if>
- <if test="departIdea !=null">
- depart_idea = #{departIdea},
- </if>
- <if test="departState !=null">
- depart_state = #{departState},
- </if>
- <if test="sate !=null">
- sate = #{sate},
- </if>
- <if test="uuid !=null">
- uuid = #{uuid},
- </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="modelUuid !=null">
- model_uuid = #{modelUuid},
- </if>
- <if test="contentPointOne !=null">
- content_point_one = #{contentPointOne},
- </if>
- <if test="contentPointTwo !=null">
- content_point_two = #{contentPointTwo},
- </if>
- <if test="contentPointThree !=null">
- content_point_three = #{contentPointThree},
- </if>
- <if test="inspectionResultOne !=null">
- inspection_result_one = #{inspectionResultOne},
- </if>
- <if test="inspectionResultTwo !=null">
- inspection_result_two = #{inspectionResultTwo},
- </if>
- <if test="inspectionResultThree !=null">
- inspection_result_three = #{inspectionResultThree},
- </if>
- <if test="processingOpinionOne !=null">
- processing_opinion_one = #{processingOpinionOne},
- </if>
- <if test="processingOpinionTwo !=null">
- processing_opinion_two = #{processingOpinionTwo},
- </if>
- <if test="processingOpinionThree !=null">
- processing_opinion_three = #{processingOpinionThree}
- </if>
- <if test="deviceId !=null">
- device_id = #{deviceId}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM dm_device_spot_new WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM dm_device_spot_new WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|