1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.iailab.module.ansteel.ems.dao;
|
| import com.iailab.framework.common.dao.BaseDao;
| import com.iailab.module.ansteel.ems.entity.ByqlzAdsEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @author lirm
| * @Description
| * @createTime 2025年06月18日
| */
| @Mapper
| public interface ByqlzAdsDao extends BaseDao<ByqlzAdsEntity> {
|
| }
|
|