| 123456789101112131415161718192021 |
- /**
- * Copyright 2019 DH
- * All right reserved.
- * 项目名称: 大恒泰山系统
- * 创建日期:2022/8/24
- */
- package org.springblade.modules.share.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.springblade.modules.share.entity.DataShareLogEntity;
- /***
- * Date:2022/8/24
- * Title:文件所属模块(必须填写)
- * Description:对本文件的详细描述,原则上不能少于30字
- * @author dylan
- * @version 1.0
- * Remark:认为有必要的其他信息
- */
- public interface DataShareLogMapper extends BaseMapper<DataShareLogEntity> {
- }
|