21 lines
915 B
XML
21 lines
915 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="cn.ysk.cashier.mybatis.mapper.TbShopMsgStateMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="cn.ysk.cashier.mybatis.pojo.TbShopMsgStatetb">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="shop_id" column="shop_id" jdbcType="INTEGER"/>
|
|
<result property="type" column="type" jdbcType="INTEGER"/>
|
|
<result property="state" column="state" jdbcType="INTEGER"/>
|
|
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="update_time" column="update_time" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,shop_id,type,
|
|
state,create_time,update_time
|
|
</sql>
|
|
</mapper>
|