puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.sinata.rest.modular.mall.dao.UserAppSetMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.sinata.rest.modular.mall.model.UserAppSet">
        <id column="id" property="id"/>
        <result column="deviceNo" property="deviceNo"/>
        <result column="appSetId" property="appSetId"/>
        <result column="isUpdate" property="isUpdate"/>
        <result column="updateTime" property="updateTime"/>
    </resultMap>
 
</mapper>