|
@@ -0,0 +1,24 @@
|
|
|
+<?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.warewms.hailiang.mapper.DeviceLogMapper">
|
|
|
+
|
|
|
+ <resultMap id="BaseResultMap" type="com.warewms.hailiang.domian.DeviceLog">
|
|
|
+ <id property="deviceLogId" column="device_log_id" jdbcType="BIGINT"/>
|
|
|
+ <result property="deviceId" column="device_id" jdbcType="VARCHAR"/>
|
|
|
+ <result property="deviceName" column="device_name" jdbcType="VARCHAR"/>
|
|
|
+ <result property="content" column="content" jdbcType="VARCHAR"/>
|
|
|
+ <result property="status" column="status" jdbcType="CHAR"/>
|
|
|
+ <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
|
+ <result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
|
|
+ <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
|
+ <result property="remark" column="remark" jdbcType="VARCHAR"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ device_log_id,device_id,device_name,
|
|
|
+ content,status,create_time,
|
|
|
+ update_by,update_time,remark
|
|
|
+ </sql>
|
|
|
+</mapper>
|