工业互联网平台2.0版本后端代码
潘志宝
2024-09-23 8b3ee3e5c2e3cc1b023d1a4b98668546db8467ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.iailab.module.model.mpk.dao;
 
import com.iailab.framework.common.dao.BaseDao;
import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
import com.iailab.module.model.mpk.entity.MethodSettingEntity;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @description:
 * @author: dzd
 * @date: 2024/9/14 15:11
 **/
@TenantDS
@Mapper
public interface MethodSettingDao extends BaseDao<MethodSettingEntity> {
}