feat: 霸王餐相关接口
This commit is contained in:
28
src/main/resources/mapper/TbFreeDineConfigMapper.xml
Normal file
28
src/main/resources/mapper/TbFreeDineConfigMapper.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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.TbFreeDineConfigMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbFreeDineConfig">
|
||||
<id property="id" column="id" jdbcType="INTEGER"/>
|
||||
<result property="enable" column="enable" jdbcType="TINYINT"/>
|
||||
<result property="rechargeTimes" column="recharge_times" jdbcType="INTEGER"/>
|
||||
<result property="rechargeThreshold" column="recharge_threshold" jdbcType="DECIMAL"/>
|
||||
<result property="withCoupon" column="with_coupon" jdbcType="TINYINT"/>
|
||||
<result property="withPoints" column="with_points" jdbcType="TINYINT"/>
|
||||
<result property="rechargeDesc" column="recharge_desc" jdbcType="VARCHAR"/>
|
||||
<result property="useType" column="use_type" jdbcType="VARCHAR"/>
|
||||
<result property="shopId" column="shop_id" jdbcType="INTEGER"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="childShopIdList" column="child_shop_id_list" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,enable,recharge_times,
|
||||
recharge_threshold,with_coupon,with_points,
|
||||
recharge_desc,use_type,shop_id,
|
||||
create_time,update_time,child_shop_id_list
|
||||
</sql>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user