| | |
| | | import com.terra.system.entity.data.FmeLogEntity; |
| | | import com.terra.system.entity.sys.AttachEntity; |
| | | import com.terra.system.helper.ClassHelper; |
| | | import com.terra.system.helper.StringHelper; |
| | | import com.terra.common.helper.StringHelper; |
| | | import com.terra.system.mapper.all.BasicMapper; |
| | | import com.terra.system.mapper.sys.AttachMapper; |
| | | import com.terra.system.service.all.UploadAttachService; |
| | |
| | | @Override |
| | | public Integer updates(List<AttachEntity> list) { |
| | | return attachMapper.updates(list); |
| | | } |
| | | |
| | | @Override |
| | | public List<FmeLogEntity> selectFmeLogs(String tabs) { |
| | | return attachMapper.selectFmeLogs(tabs); |
| | | } |
| | | |
| | | /** |
| | | * 查询FME日志 |
| | | */ |
| | | public List<FmeLogEntity> selectFmeLogs() { |
| | | if (StringHelper.isEmpty(tabs)) { |
| | | tabs = UploadAttachService.getTabs().replace("'", ""); |
| | | } |
| | | |
| | | return attachMapper.selectFmeLogs(tabs); |
| | | } |
| | | |
| | | @Override |
| | | public Integer updateFmeLog(Integer id) { |
| | | return attachMapper.updateFmeLog(id); |
| | | } |
| | | |
| | | @Override |