<?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.panzhihua.service_community.dao.ComBatteryStoreClassMapper">
|
|
<resultMap type="com.panzhihua.service_community.entity.ComBatteryStoreClass" id="ComBatteryStoreClassMap">
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
<result property="storeId" column="store_id" jdbcType="INTEGER"/>
|
<result property="status" column="status" jdbcType="INTEGER"/>
|
<result property="isDel" column="is_del" jdbcType="INTEGER"/>
|
<result property="createAt" column="create_at" jdbcType="TIMESTAMP"/>
|
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
<result property="updateAt" column="update_at" jdbcType="TIMESTAMP"/>
|
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
</resultMap>
|
|
<!--查询单个-->
|
<select id="queryById" resultType="com.panzhihua.common.model.vos.common.ComBatteryStoreClassVo">
|
select
|
id, name, store_id, status, is_del, create_at, create_by, update_at, update_by
|
from com_battery_store_class
|
where id = #{id}
|
</select>
|
|
<!--查询指定行数据-->
|
<select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.common.ComBatteryStoreClassVo">
|
select
|
id, name, store_id, status, is_del, create_at, create_by, update_at, update_by
|
from com_battery_store_class
|
<where>
|
and is_del = 2
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.name != null and dto.name != ''">
|
and name = #{dto.name}
|
</if>
|
<if test="dto.storeId != null">
|
and store_id = #{dto.storeId}
|
</if>
|
<if test="dto.status != null">
|
and status = #{dto.status}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
<!--查询所有数据-->
|
<select id="queryAllByList" resultType="com.panzhihua.common.model.vos.common.ComBatteryStoreClassVo">
|
select
|
id, name, store_id, status, is_del, create_at, create_by, update_at, update_by
|
from com_battery_store_class
|
<where>
|
and is_del = 2
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.name != null and dto.name != ''">
|
and name = #{dto.name}
|
</if>
|
<if test="dto.storeId != null">
|
and store_id = #{dto.storeId}
|
</if>
|
<if test="dto.status != null">
|
and status = #{dto.status}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
</mapper>
|