jinlin
2026-02-27 884d1457cebbda20ad2539550062c408a58709be
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.ftCategory.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.life.modules.mainPart.ftCategory.model.FtCategory;
import org.apache.ibatis.annotations.Mapper;
 
 
import java.util.List;
import java.util.Map;
 
 
/**
 * ft_category
 *
 * @author zt generator 
 * @since 1.0.0 2026-02-26
 */
@Mapper
public interface FtCategoryDao extends BaseDao<FtCategory> {
 
    List<FtCategory> getList(Map<String, Object> params);
 
    List<FtCategory> getList2();
}