龚焕茏
2024-06-25 5f2c9ecdc28f942c7b0c59f3d27b48975c628414
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();
}