15 lines
316 B
Java
15 lines
316 B
Java
package net.maku.system.dao;
|
|
|
|
import net.maku.framework.common.dao.BaseDao;
|
|
import net.maku.system.entity.SysAttachmentEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 附件管理
|
|
*
|
|
* @author 阿沐 babamu@126.com
|
|
*/
|
|
@Mapper
|
|
public interface SysAttachmentDao extends BaseDao<SysAttachmentEntity> {
|
|
|
|
} |