13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
<?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.ruoyi.manage.mapper.DpEffectAssessListMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.manage.domain.DpEffectAssessList">
        <id column="PKID" property="pkid" />
        <result column="ASSESS_ID" property="assessId" />
        <result column="TYPE" property="type" />
        <result column="DEL_FLAG" property="delFlag" />
        <result column="CREATE_BY" property="createBy" />
        <result column="CREATE_TIME" property="createTime" />
        <result column="UPDATE_BY" property="updateBy" />
        <result column="UPDATE_TIME" property="updateTime" />
        <result column="REMARK" property="remark" />
        <result column="PLAN" property="plan" />
        <result column="ITEM" property="item" />
        <result column="ITEM_DETAIL" property="itemDetail" />
        <result column="UNIT" property="unit" />
        <result column="CODE" property="code" />
        <result column="NORMAL" property="normal" />
        <result column="WEIGHT" property="weight" />
        <result column="CLASSIFY_INDEX" property="classifyIndex" />
        <result column="CLASSIFY_WEIGHT" property="classifyWeight" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        PKID, ASSESS_ID, TYPE, DEL_FLAG, CREATE_BY, CREATE_TIME, UPDATE_BY, UPDATE_TIME, REMARK, PLAN, ITEM, ITEM_DETAIL, UNIT, CODE, NORMAL, WEIGHT, CLASSIFY_INDEX, CLASSIFY_WEIGHT
    </sql>
 
    <select id="getPageList" resultMap="BaseResultMap">
        select * from DS_EFFECT_ASSESS_LIST
        order by PKID DESC
        limit #{pageSize} offset #{offset}
    </select>
 
    <select id="getTotal" resultType="java.lang.Integer">
        select count(1) from  DS_EFFECT_ASSESS_LIST
    </select>
 
 
</mapper>