FlrbInfoDayMapper.xml 2.63 KB
Newer Older
co_dengxiongwen's avatar
co_dengxiongwen committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
<?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.devplatform.admin.modules.eq.dao.FlrbInfoDayDao">
	<!-- Result Map -->
	<resultMap id="BaseResultMap" type="com.devplatform.admin.modules.eq.bean.FlrbInfoDay">
	    <result column="id" property="id"/>
	    <result column="resource_id" property="resourceId"/>
	    <result column="electric_energy" property="electricEnergy"/>
	    <result column="type" property="type"/>
	    <result column="station_id" property="stationId"/>
	    <result column="create_time" property="createTime"/>
	</resultMap>

	<!-- flrb_info_day table all fields -->
	<sql id="Base_Column_List">
		id,resource_id,electric_energy,type,station_id,create_time
	</sql>

	<!-- 公共查询条件 -->
	<sql id="Example_Where_Clause">
		where t.deleted=0
		<if test="id!=null and id!=''">and t.id = #{id}</if>
		<if test="resourceId!=null and resourceId!=''">and t.resource_id = #{resourceId}</if>
		<if test="electricEnergy!=null and electricEnergy!=''">and t.electric_energy = #{electricEnergy}</if>
		<if test="type!=null ">and t.type = #{type}</if>
		<if test="stationId!=null and stationId!=''">and t.station_id = #{stationId}</if>
		<if test="createTime!=null ">and t.create_time = #{createTime}</if>
	</sql>

	<select id="queryPageByCount" parameterType="Object" resultType="java.lang.Integer">
	select count(1) from flrb_info_day t
	<include refid="Example_Where_Clause"/>
	</select>

	<select id="queryPageList" parameterType="Object" resultMap="BaseResultMap">
	select t.* from flrb_info_day t
	<include refid="Example_Where_Clause"/>
	<if test="pager.orderCondition != null and pager.orderCondition != ''">
		${pager.orderCondition}
	</if>
	<if test="pager.mysqlQueryCondition != null and pager.mysqlQueryCondition != ''">
		${pager.mysqlQueryCondition}
	</if>
	</select>

co_dengxiongwen's avatar
co_dengxiongwen committed
46 47 48 49 50 51
	<select id="queryPageListByParam" resultType="java.util.Map">
		select t.* from flrb_info_day t
		where 1=1
		<if test="params.resourceId!=null and params.resourceId!=''">
			and t.resource_id = #{params.resourceId}
		</if>
co_dengxiongwen's avatar
co_dengxiongwen committed
52 53
		<if test="params.type == 2">
			and YEARWEEK(date_format(t.create_time,'%Y-%m-%d'),1) = YEARWEEK(now(),1);
co_dengxiongwen's avatar
co_dengxiongwen committed
54
		</if>
co_dengxiongwen's avatar
co_dengxiongwen committed
55 56
		<if test="params.type == 3">
			and DATE_FORMAT(t.create_time, '%Y%m' ) = DATE_FORMAT( CURDATE( ) , '%Y%m' )
co_dengxiongwen's avatar
co_dengxiongwen committed
57 58 59 60 61
		</if>
		<if test="params.sort != null and params.sort != '' and params.order != null and params.order != ''">
			ORDER BY ${params.sort} ${params.order}
		</if>
		<if test="params.sort == null or params.sort == '' or params.order == null or params.order == ''">
co_dengxiongwen's avatar
co_dengxiongwen committed
62
			ORDER BY t.create_time
co_dengxiongwen's avatar
co_dengxiongwen committed
63 64 65
		</if>
	</select>

co_dengxiongwen's avatar
co_dengxiongwen committed
66 67 68
</mapper>