ZhjQsjgmsbDao.xml 3.7 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.zhj.dao.ZhjQsjgmsbDao">
    
	<sql id="zhjQsjgmsbColumns">
		a.id AS "id",
		a.bdcdyh AS "bdcdyh",
		a.zrzh AS "zrzh",
		a.ch AS "ch",
		a.zl AS "zl",
		a.sjcs AS "sjcs",
		a.shbw AS "shbw",
		a.hx AS "hx",
		a.hxjg AS "hxjg",
		a.fwyt AS "fwyt",
		a.jzmj AS "jzmj",
		a.tnjzmj AS "tnjzmj",
		a.dxjzmj AS "dxjzmj",
		a.fttdmj AS "fttdmj",
		a.fwlx AS "fwlx",
		a.fwxz AS "fwxz",
		a.qllx AS "qllx",
		a.djlx AS "djlx",
		a.syqmj AS "syqmj",
		a.qssj AS "qssj",
		a.jssj AS "jssj",
		a.bdcqzh AS "bdcqzh",
		a.qzysxlh AS "qzysxlh",
		a.djsj AS "djsj",
		a.qxdm AS "qxdm",
		a.qszt AS "qszt",
		a.zt AS "zt",
		a.cgbz AS "cgbz",
		a.errormsg AS "errormsg",
		a.del_flag AS "delFlag",
		a.create_by AS "createBy.id",
		a.create_date AS "createDate",
		a.update_by AS "updateBy.id",
		a.update_date AS "updateDate"
	</sql>
	
	<sql id="zhjQsjgmsbJoins">
	</sql>
    
	<select id="get" resultType="ZhjQsjgmsb">
		SELECT 
			<include refid="zhjQsjgmsbColumns"/>
		FROM zhj_qsjgmsb a
		<include refid="zhjQsjgmsbJoins"/>
		WHERE a.id = #{id}
	</select>
	
	<select id="findList" resultType="ZhjQsjgmsb">
		SELECT 
			<include refid="zhjQsjgmsbColumns"/>
		FROM zhj_qsjgmsb a
		<include refid="zhjQsjgmsbJoins"/>
		<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="ZhjQsjgmsb">
		SELECT 
			<include refid="zhjQsjgmsbColumns"/>
		FROM zhj_qsjgmsb a
		<include refid="zhjQsjgmsbJoins"/>
		<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 zhj_qsjgmsb(
			id,
			bdcdyh,
			zrzh,
			ch,
			zl,
			sjcs,
			shbw,
			hx,
			hxjg,
			fwyt,
			jzmj,
			tnjzmj,
			dxjzmj,
			fttdmj,
			fwlx,
			fwxz,
			qllx,
			djlx,
			syqmj,
			qssj,
			jssj,
			bdcqzh,
			qzysxlh,
			djsj,
			qxdm,
			qszt,
			zt,
			cgbz,
			errormsg,
			del_flag,
			create_by,
			create_date,
			update_by,
			update_date
		) VALUES (
			#{id},
			#{bdcdyh},
			#{zrzh},
			#{ch},
			#{zl},
			#{sjcs},
			#{shbw},
			#{hx},
			#{hxjg},
			#{fwyt},
			#{jzmj},
			#{tnjzmj},
			#{dxjzmj},
			#{fttdmj},
			#{fwlx},
			#{fwxz},
			#{qllx},
			#{djlx},
			#{syqmj},
			#{qssj},
			#{jssj},
			#{bdcqzh},
			#{qzysxlh},
			#{djsj},
			#{qxdm},
			#{qszt},
			#{zt},
			#{cgbz},
			#{errormsg},
			#{delFlag},
			#{createBy.id},
			#{createDate},
			#{updateBy.id},
			#{updateDate}
		)
	</insert>
	
	<update id="update">
		UPDATE zhj_qsjgmsb SET 	
			bdcdyh = #{bdcdyh},
			zrzh = #{zrzh},
			ch = #{ch},
			zl = #{zl},
			sjcs = #{sjcs},
			shbw = #{shbw},
			hx = #{hx},
			hxjg = #{hxjg},
			fwyt = #{fwyt},
			jzmj = #{jzmj},
			tnjzmj = #{tnjzmj},
			dxjzmj = #{dxjzmj},
			fttdmj = #{fttdmj},
			fwlx = #{fwlx},
			fwxz = #{fwxz},
			qllx = #{qllx},
			djlx = #{djlx},
			syqmj = #{syqmj},
			qssj = #{qssj},
			jssj = #{jssj},
			bdcqzh = #{bdcqzh},
			qzysxlh = #{qzysxlh},
			djsj = #{djsj},
			qxdm = #{qxdm},
			qszt = #{qszt},
			zt = #{zt},
			cgbz = #{cgbz},
			errormsg = #{errormsg},
			update_by = #{updateBy.id},
			update_date = #{updateDate}
		WHERE id = #{id}
	</update>
	
	<update id="delete">
		UPDATE zhj_qsjgmsb SET 
			del_flag = #{DEL_FLAG_DELETE}
		WHERE id = #{id}
	</update>
	
</mapper>