PC 版本管理

This commit is contained in:
2024-08-28 16:20:04 +08:00
parent 15c09f9666
commit ae3d77e8c3
5 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.chaozhanggui.system.cashierservice.mybatis;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chaozhanggui.system.cashierservice.entity.TbVersion;
/**
* 版本管理(TbVersion)表数据库访问层
*
* @author ww
* @since 2024-08-28 11:22:09
*/
public interface TbVersionMapper extends BaseMapper<TbVersion> {
}