项目初始化

This commit is contained in:
Elliott
2024-04-07 11:28:44 +08:00
commit a2879e8b64
65 changed files with 2747 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.joju.datamanager.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.joju.datamanager.model.callnumber.CallNumbers;
import org.apache.ibatis.annotations.Mapper;
/**
* @description: 排队叫号Mapper
* @author: Mr.zs
* @create: 2024-03-29 10:33
**/
@Mapper
public interface CallNumbersMapper extends BaseMapper<CallNumbers> {
}