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