mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?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.ComChangeCarModelSpecsChildrenMapper">
 
    <resultMap type="com.panzhihua.service_community.entity.ComChangeCarModelSpecsChildren"
               id="ComChangeCarModelSpecsChildrenMap">
        <result property="id" column="id" jdbcType="INTEGER"/>
        <result property="specsId" column="specs_id" jdbcType="INTEGER"/>
        <result property="name" column="name" jdbcType="VARCHAR"/>
        <result property="isDel" column="is_del" jdbcType="INTEGER"/>
    </resultMap>
 
    <!--查询单个-->
    <select id="queryById" resultType="com.panzhihua.common.model.vos.common.ComChangeCarModelSpecsChildrenVo">
        select
          id, specs_id, name, is_del
        from com_change_car_model_specs_children
        where id = #{id}
    </select>
 
    <!--查询指定行数据-->
    <select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.common.ComChangeCarModelSpecsChildrenVo">
        select
        id, specs_id, name, is_del
        from com_change_car_model_specs_children
        <where>
            and is_del = 2
            <if test="dto.id != null">
                and id = #{dto.id}
            </if>
            <if test="dto.specsId != null">
                and specs_id = #{dto.specsId}
            </if>
            <if test="dto.name != null and dto.name != ''">
                and `name` = #{dto.name}
            </if>
        </where>
    </select>
 
    <!--查询所有数据-->
    <select id="queryAllByList" resultType="com.panzhihua.common.model.vos.common.ComChangeCarModelSpecsChildrenVo">
        select
        id, specs_id, name, is_del
        from com_change_car_model_specs_children
        <where>
            and is_del = 2
            <if test="dto.id != null">
                and id = #{dto.id}
            </if>
            <if test="dto.specsId != null">
                and specs_id = #{dto.specsId}
            </if>
            <if test="dto.name != null and dto.name != ''">
                and `name` = #{dto.name}
            </if>
        </where>
    </select>
 
    <select id="queryAllBySpecsId" resultType="com.panzhihua.common.model.vos.common.ComChangeCarModelSpecsChildrenVo">
        select
        id, specs_id, name, is_del
        from com_change_car_model_specs_children
        where is_del = 2 and specs_id = #{specsId}
    </select>
 
</mapper>