增加排号小票打印处理

This commit is contained in:
2024-09-19 15:30:50 +08:00
parent 89ac3c9e25
commit 905063987a
18 changed files with 1412 additions and 16 deletions

View 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.TbCallConfigMapper">
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbCallConfig">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="pageAddress" column="page_address" jdbcType="VARCHAR"/>
<result property="isOnline" column="is_online" jdbcType="TINYINT"/>
<result property="bgCover" column="bg_cover" jdbcType="VARCHAR"/>
<result property="successMsg" column="success_msg" jdbcType="VARCHAR"/>
<result property="nearMsg" column="near_msg" jdbcType="VARCHAR"/>
<result property="callingMsg" column="calling_msg" 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="isPostpone" column="is_postpone" jdbcType="TINYINT"/>
<result property="postponeNum" column="postpone_num" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id,page_address,is_online,
bg_cover,success_msg,near_msg,
calling_msg,shop_id,create_time,
update_time,is_postpone,postpone_num
</sql>
</mapper>