dengzedong
2024-09-13 3acc3151d842922fda223cbed8987b3fe9f83e24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.iailab.module.model.mpk.dao;
 
import com.iailab.framework.common.dao.BaseDao;
import com.iailab.module.model.mpk.entity.ProjectModelEntity;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @description:
 * @author: dzd
 * @date: 2024/8/22 14:41
 **/
@Mapper
public interface ProjectModelDao extends BaseDao<ProjectModelEntity> {
    
}