1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.ycl.platform.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ycl.platform.domain.entity.TContract;
|
| /**
| * 【请填写功能名称】Mapper接口
| *
| * @author ruoyi
| * @date 2024-03-12
| */
| public interface TContractMapper extends BaseMapper<TContract> {
| }
|
|