|
@@ -37,6 +37,7 @@ import com.zd.model.domain.per.PerPrefix;
|
|
|
import com.zd.model.entity.SysUser;
|
|
import com.zd.model.entity.SysUser;
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -54,6 +55,7 @@ import java.util.stream.Collectors;
|
|
|
* @Date 2023/10/16 17:50
|
|
* @Date 2023/10/16 17:50
|
|
|
* @Version 2.0
|
|
* @Version 2.0
|
|
|
*/
|
|
*/
|
|
|
|
|
+@Slf4j
|
|
|
@Api(tags = "东北大学库存")
|
|
@Api(tags = "东北大学库存")
|
|
|
@RestController
|
|
@RestController
|
|
|
@RequestMapping("/stock")
|
|
@RequestMapping("/stock")
|
|
@@ -520,6 +522,7 @@ public class DbStockController extends AbstractController {
|
|
|
if (bo.getSubjectId() == null || bo.getGasName() == null) {
|
|
if (bo.getSubjectId() == null || bo.getGasName() == null) {
|
|
|
return ResultData.success(new ArrayList<>());
|
|
return ResultData.success(new ArrayList<>());
|
|
|
}
|
|
}
|
|
|
|
|
+ log.info("验室下气体列表:"+JSON.toJSONString(bo));
|
|
|
List<DbInOutRecordVo> backList = new ArrayList<>();
|
|
List<DbInOutRecordVo> backList = new ArrayList<>();
|
|
|
|
|
|
|
|
//实验室下根据气体名称查询气瓶集合
|
|
//实验室下根据气体名称查询气瓶集合
|