jinlin
2024-10-28 79eab76ac1b4b77696c92d72cfbde1e122c4c28f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.zt.life.modules.mainPart.TestScheme.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.life.modules.mainPart.TestScheme.model.TestScheme;
import org.apache.ibatis.annotations.Mapper;
 
 
import java.util.List;
import java.util.Map;
 
 
/**
 * test_scheme
 *
 * @author zt generator 
 * @since 1.0.0 2024-08-07
 */
@Mapper
public interface TestSchemeDao extends BaseDao<TestScheme> {
 
    List<TestScheme> getList();
 
    void insertNum();
}