39 lines
2.1 KiB
XML
39 lines
2.1 KiB
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.chaozhanggui.system.cashierservice.mapper.TbCallQueueMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbCallQueue">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="callTableId" column="call_table_id" jdbcType="INTEGER"/>
|
|
<result property="phone" column="phone" jdbcType="VARCHAR"/>
|
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
|
<result property="shopName" column="shop_name" jdbcType="VARCHAR"/>
|
|
<result property="shopId" column="shop_id" jdbcType="INTEGER"/>
|
|
<result property="state" column="state" jdbcType="TINYINT"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="callTime" column="call_time" jdbcType="TIMESTAMP"/>
|
|
<result property="callCount" column="call_count" jdbcType="INTEGER"/>
|
|
<result property="passTime" column="pass_time" jdbcType="TIMESTAMP"/>
|
|
<result property="cancelTime" column="cancel_time" jdbcType="TIMESTAMP"/>
|
|
<result property="note" column="note" jdbcType="VARCHAR"/>
|
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
|
<result property="openId" column="open_id" jdbcType="VARCHAR"/>
|
|
<result property="subState" column="sub_state" jdbcType="TINYINT"/>
|
|
<result property="confirmTime" column="confirm_time" jdbcType="TIMESTAMP"/>
|
|
<result property="callNum" column="call_num" jdbcType="VARCHAR"/>
|
|
<result property="createDay" column="create_day" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,call_table_id,phone,
|
|
name,shop_name,shop_id,
|
|
state,create_time,call_time,
|
|
call_count,pass_time,cancel_time,
|
|
note,user_id,open_id,
|
|
sub_state,confirm_time,call_num,
|
|
create_day
|
|
</sql>
|
|
</mapper>
|