Commit 5f16ef05 by Suvalue

1

parent c14eb3cc
package com.bsoft.api.common.aspect; package com.bsoft.api.common.aspect;
import org.apache.poi.ss.usermodel.DateUtil;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Aspect;
......
...@@ -10,7 +10,6 @@ import com.bsoft.api.service.BlockValuesService; ...@@ -10,7 +10,6 @@ import com.bsoft.api.service.BlockValuesService;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired; 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.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
......
...@@ -3,14 +3,14 @@ package com.bsoft.api.service.Impl; ...@@ -3,14 +3,14 @@ package com.bsoft.api.service.Impl;
import com.bsoft.api.mapper.DicIndMapper; import com.bsoft.api.mapper.DicIndMapper;
import com.bsoft.api.model.DicInd; import com.bsoft.api.model.DicInd;
import com.bsoft.api.service.DicIndService; import com.bsoft.api.service.DicIndService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List; import java.util.List;
@Service @Service
public class DicIndServiceImpl implements DicIndService { public class DicIndServiceImpl implements DicIndService {
@Resource @Autowired
private DicIndMapper dicIndMapper; private DicIndMapper dicIndMapper;
@Override @Override
...@@ -45,8 +45,7 @@ public class DicIndServiceImpl implements DicIndService { ...@@ -45,8 +45,7 @@ public class DicIndServiceImpl implements DicIndService {
@Override @Override
public List<DicInd> selectAll(String filter) { public List<DicInd> selectAll(String filter) {
List<DicInd> list = dicIndMapper.selectAllByFilter(filter); return dicIndMapper.selectAllByFilter(filter);
return list;
} }
} }
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