|
|
@@ -750,4 +750,16 @@ public class LabSecurityApplyController extends BaseController
|
|
|
byte[] data = outStream.toByteArray();
|
|
|
return data;
|
|
|
}
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 安全准入未过期的数据
|
|
|
+ * @param labSecurityApply
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/getValidApply")
|
|
|
+ public ResultData selectValidApply( LabSecurityApply labSecurityApply)
|
|
|
+ {
|
|
|
+ List<LabSecurityApply> list = labSecurityApplyService.selectValidApply(labSecurityApply);
|
|
|
+ return ResultData.success(list);
|
|
|
+ }
|
|
|
}
|