15 lines
805 B
XML
15 lines
805 B
XML
<?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.cool.store.mapper.NewStoreOpeningMapper">
|
|
<resultMap id="BaseResultMap" type="com.cool.store.entity.NewStoreOpeningDO">
|
|
<!--
|
|
WARNING - @mbg.generated
|
|
-->
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="shop_id" jdbcType="BIGINT" property="shopId" />
|
|
<result column="todo_item" jdbcType="VARCHAR" property="todoItem" />
|
|
<result column="completion_time" jdbcType="TIMESTAMP" property="completionTime" />
|
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
</resultMap>
|
|
</mapper> |