feat: 霸王餐相关接口

This commit is contained in:
2024-10-26 09:14:29 +08:00
parent 2f324a741a
commit 3573f6a0d6
10 changed files with 528 additions and 196 deletions

View File

@@ -0,0 +1,18 @@
package com.chaozhanggui.system.cashierservice.mapper;
import com.chaozhanggui.system.cashierservice.entity.TbFreeDineConfig;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author Administrator
* @description 针对表【tb_free_dine_config(霸王餐配置信息表)】的数据库操作Mapper
* @createDate 2024-10-25 14:22:41
* @Entity com.chaozhanggui.system.cashierservice.entity.TbFreeDineConfig
*/
public interface TbFreeDineConfigMapper extends BaseMapper<TbFreeDineConfig> {
}