Commit 5f16ef05 by Suvalue

1

parent c14eb3cc
package com.bsoft.api.common.aspect;
import org.apache.poi.ss.usermodel.DateUtil;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
......
......@@ -10,7 +10,6 @@ import com.bsoft.api.service.BlockValuesService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
......
......@@ -3,14 +3,14 @@ package com.bsoft.api.service.Impl;
import com.bsoft.api.mapper.DicIndMapper;
import com.bsoft.api.model.DicInd;
import com.bsoft.api.service.DicIndService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class DicIndServiceImpl implements DicIndService {
@Resource
@Autowired
private DicIndMapper dicIndMapper;
@Override
......@@ -45,8 +45,7 @@ public class DicIndServiceImpl implements DicIndService {
@Override
public List<DicInd> selectAll(String filter) {
List<DicInd> list = dicIndMapper.selectAllByFilter(filter);
return list;
return dicIndMapper.selectAllByFilter(filter);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment