| | |
| | | package com.lf.server.mapper.sys; |
| | | |
| | | import com.lf.server.entity.data.FmeLogEntity; |
| | | import com.lf.server.entity.data.MetaEntity; |
| | | import com.lf.server.entity.sys.AttachEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | |
| | | * @return |
| | | */ |
| | | public Integer updates(List<AttachEntity> list); |
| | | |
| | | /** |
| | | * 查询FME日志 |
| | | * |
| | | * @param tabs |
| | | * @return |
| | | */ |
| | | public List<FmeLogEntity> selectFmeLogs(String tabs); |
| | | |
| | | /** |
| | | * 更新FME日志 |
| | | * |
| | | * @param id ID |
| | | * @return |
| | | */ |
| | | public Integer updateFmeLog(Integer id); |
| | | |
| | | /** |
| | | * 根据元数据名称插入附件 |
| | | * |
| | | * @param metaName |
| | | * @param tab |
| | | * @param tabGuid |
| | | * @return |
| | | */ |
| | | public Integer insertAttachByMeta(String metaName, String tab, String tabGuid); |
| | | } |