刘韬 il y a 2 ans
Parent
commit
a9518e02a3

+ 3 - 1
DataFusion/src/com/zskk/control/ViewController.java

@@ -258,6 +258,7 @@ public class ViewController extends Controller {
 		renderText(records.toString());
 	}
 	
+	//报告匹配
 	public void bgpp() {
 		DataService dService = ServiceFactory.getService(DataService.class);
 		List<Record> records = Db.use("connected").find("select * from reportcheck where checktime >? order by checktime desc",this.getPara("time"));
@@ -335,7 +336,8 @@ public class ViewController extends Controller {
 		renderText(records.toString());
 	}
 	
-	public void cspp() {
+	//打印匹配
+	public void dypp() {
 		DataService dService = ServiceFactory.getService(DataService.class);
 		List<Record> records = Db.use("print").find("select * from IMAGEVIEW where PRINTED=? and PRINTTIME >?","true",this.getPara("time"));
 		for (Record record : records) {

+ 1 - 1
DataFusion/src/com/zskk/task/DataTask.java

@@ -22,7 +22,7 @@ public class DataTask implements ITask {
 	public void run() {
 		// TODO Auto-generated method stub
 		DataService dService = ServiceFactory.getService(DataService.class);
-        JSONArray jsonArray = dService.getExamList(300);	
+        JSONArray jsonArray = dService.getExamList(200);	
         for (Object object : jsonArray) {
         	try {
 			JSONObject jsonObject = JSON.parseObject(object.toString());