2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-24 7a00187d197548e23a38dcb87187ef6b2b7f8bfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.sandu.ximon.dao.mapper.RemoteUpdateFileMapper">
 
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.RemoteUpdateFile">
        <id property="id" column="id" jdbcType="INTEGER"/>
        <result property="uploadUserId" column="upload_user_id" jdbcType="BIGINT"/>
        <result property="uploadUserType" column="upload_user_type" jdbcType="INTEGER"/>
        <result property="filename" column="filename" jdbcType="VARCHAR"/>
        <result property="softwareVersion" column="software_version" jdbcType="DECIMAL"/>
        <result property="hardwareVersion" column="hardware_version" jdbcType="DECIMAL"/>
        <result property="aliAddress" column="ali_address" jdbcType="VARCHAR"/>
        <result property="fileType" column="file_type" jdbcType="VARCHAR"/>
        <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
        <result property="fileLength" column="file_length" jdbcType="VARCHAR"/>
    </resultMap>
 
</mapper>