RegBusZhcxResultDao.xml 4.26 KB
<?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="com.thinkgem.jeesite.modules.reg.dao.bus.RegBusZhcxResultDao">
    
	<sql id="regBusZhcxResultColumns">
		a.id AS "id",
		a.startywh AS "startywh",
		a.endywh AS "endywh",
		a.djlx AS "djlx",
		a.taskdefkey AS "taskdefkey",
		a.taskuser AS "taskuser",
		a.oldstartbdcqzh AS "oldstartbdcqzh",
		a.oldendbdcqzh AS "oldendbdcqzh",
		a.newstartbdcqzh AS "newstartbdcqzh",
		a.newendbdcqzh AS "newendbdcqzh",
		a.zl AS "zl",
		a.bsm AS "bsm",
		a.zrzh AS "zrzh",
		a.xmmc AS "xmmc",
		a.qdh AS "qdh",
		a.startfwxh AS "startfwxh",
		a.endfwxh AS "endfwxh",
		a.startfwbm AS "startfwbm",
		a.endfwbm AS "endfwbm",
		a.shbw AS "shbw",
		a.startscjzmj AS "startscjzmj",
		a.endscjzmj AS "endscjzmj",
		a.dwmc AS "dwmc",
		a.dwzjzl AS "dwzjzl",
		a.dwzjh AS "dwzjh",
		a.qlrmc AS "qlrmc",
		a.grzjzl AS "grzjzl",
		a.grzjh AS "grzjh",
		a.create_by AS "createBy.id",
		a.create_date AS "createDate",
		a.update_by AS "updateBy.id",
		a.update_date AS "updateDate",
		a.remarks AS "remarks",
		a.del_flag AS "delFlag"
	</sql>
	
	<sql id="regBusZhcxResultJoins">
	</sql>
    
	<select id="get" resultType="RegBusZhcxResult">
		SELECT 
			<include refid="regBusZhcxResultColumns"/>
		FROM reg_bus_zhcxresult a
		<include refid="regBusZhcxResultJoins"/>
		WHERE a.id = #{id}
	</select>
	
	<select id="findList" resultType="RegBusZhcxResult">
		SELECT 
			<include refid="regBusZhcxResultColumns"/>
		FROM reg_bus_zhcxresult a
		<include refid="regBusZhcxResultJoins"/>
		<where>
			a.del_flag = #{DEL_FLAG_NORMAL}
		</where>
		<choose>
			<when test="page !=null and page.orderBy != null and page.orderBy != ''">
				ORDER BY ${page.orderBy}
			</when>
			<otherwise>
				ORDER BY a.update_date DESC
			</otherwise>
		</choose>
	</select>
	
	<select id="findAllList" resultType="RegBusZhcxResult">
		SELECT 
			<include refid="regBusZhcxResultColumns"/>
		FROM reg_bus_zhcxresult a
		<include refid="regBusZhcxResultJoins"/>
		<where>
			a.del_flag = #{DEL_FLAG_NORMAL}
		</where>		
		<choose>
			<when test="page !=null and page.orderBy != null and page.orderBy != ''">
				ORDER BY ${page.orderBy}
			</when>
			<otherwise>
				ORDER BY a.update_date DESC
			</otherwise>
		</choose>
	</select>
	
	<insert id="insert">
		INSERT INTO reg_bus_zhcxresult(
			id,
			startywh,
			endywh,
			djlx,
			taskdefkey,
			taskuser,
			oldstartbdcqzh,
			oldendbdcqzh,
			newstartbdcqzh,
			newendbdcqzh,
			zl,
			bsm,
			zrzh,
			xmmc,
			qdh,
			startfwxh,
			endfwxh,
			startfwbm,
			endfwbm,
			shbw,
			startscjzmj,
			endscjzmj,
			dwmc,
			dwzjzl,
			dwzjh,
			qlrmc,
			grzjzl,
			grzjh,
			create_by,
			create_date,
			update_by,
			update_date,
			remarks,
			del_flag
		) VALUES (
			#{id},
			#{startywh},
			#{endywh},
			#{djlx},
			#{taskdefkey},
			#{taskuser},
			#{oldstartbdcqzh},
			#{oldendbdcqzh},
			#{newstartbdcqzh},
			#{newendbdcqzh},
			#{zl},
			#{bsm},
			#{zrzh},
			#{xmmc},
			#{qdh},
			#{startfwxh},
			#{endfwxh},
			#{startfwbm},
			#{endfwbm},
			#{shbw},
			#{startscjzmj},
			#{endscjzmj},
			#{dwmc},
			#{dwzjzl},
			#{dwzjh},
			#{qlrmc},
			#{grzjzl},
			#{grzjh},
			#{createBy.id},
			#{createDate},
			#{updateBy.id},
			#{updateDate},
			#{remarks},
			#{delFlag}
		)
	</insert>
	
	<update id="update">
		UPDATE reg_bus_zhcxresult SET 	
			startywh = #{startywh},
			endywh = #{endywh},
			djlx = #{djlx},
			taskdefkey = #{taskdefkey},
			taskuser = #{taskuser},
			oldstartbdcqzh = #{oldstartbdcqzh},
			oldendbdcqzh = #{oldendbdcqzh},
			newstartbdcqzh = #{newstartbdcqzh},
			newendbdcqzh = #{newendbdcqzh},
			zl = #{zl},
			bsm = #{bsm},
			zrzh = #{zrzh},
			xmmc = #{xmmc},
			qdh = #{qdh},
			startfwxh = #{startfwxh},
			endfwxh = #{endfwxh},
			startfwbm = #{startfwbm},
			endfwbm = #{endfwbm},
			shbw = #{shbw},
			startscjzmj = #{startscjzmj},
			endscjzmj = #{endscjzmj},
			dwmc = #{dwmc},
			dwzjzl = #{dwzjzl},
			dwzjh = #{dwzjh},
			qlrmc = #{qlrmc},
			grzjzl = #{grzjzl},
			grzjh = #{grzjh},
			update_by = #{updateBy.id},
			update_date = #{updateDate},
			remarks = #{remarks}
		WHERE id = #{id}
	</update>
	
	<update id="delete">
		UPDATE reg_bus_zhcxresult SET 
			del_flag = #{DEL_FLAG_DELETE}
		WHERE id = #{id}
	</update>
	
</mapper>