shiyunteng
2025-03-31 6d0410c352afeceed069f8eb5f5b6b074fdc4814
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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.by4cloud.platformx.device.mapper.DeviceScrapMapper">
 
  <resultMap id="deviceScrapMap" type="com.by4cloud.platformx.device.entity.DeviceScrap">
        <id property="id" column="id"/>
        <result property="compId" column="comp_id"/>
        <result property="deviceCoder" column="device_coder"/>
        <result property="deviceId" column="device_id"/>
        <result property="inventoryId" column="inventory_id"/>
        <result property="scrapDate" column="scrap_date"/>
        <result property="serialNo" column="serial_no"/>
        <result property="status" column="status"/>
        <result property="createBy" column="create_by"/>
        <result property="createTime" column="create_time"/>
        <result property="updateBy" column="update_by"/>
        <result property="updateTime" column="update_time"/>
        <result property="delFlag" column="del_flag"/>
  </resultMap>
</mapper>