XMTT vor 8 Jahren
Ursprung
Commit
20e151481c
1 geänderte Dateien mit 47 neuen und 0 gelöschten Zeilen
  1. 47 0
      src/main/java/com/ekexiu/console/system/service/TestService.java

+ 47 - 0
src/main/java/com/ekexiu/console/system/service/TestService.java

@ -0,0 +1,47 @@
1
package com.ekexiu.console.system.service;
2
3
import org.jfw.apt.annotation.DefaultValue;
4
import org.jfw.apt.web.annotation.Path;
5
import org.jfw.apt.web.annotation.operate.Get;
6
7
import java.util.ArrayList;
8
import java.util.List;
9
10
@Path("/test")
11
public class TestService {
12
13
	
14
	@Get
15
	@Path("/typeahead")
16
	public List<TypeaheadItem> get(String q,@DefaultValue("11") int s){
17
		List<TypeaheadItem> ret = new ArrayList<>(s);
18
		for(int i = 0 ; i < s;++i){
19
			TypeaheadItem thi = new TypeaheadItem();
20
			String v = q+"_"+i;
21
			thi.setCode(v);
22
			thi.setCaption("caption_"+v);
23
			ret.add(thi);
24
		}
25
		return ret;
26
	}
27
28
29
30
	public static class TypeaheadItem{
31
		private String code;
32
		private String caption;
33
		public String getCode() {
34
			return code;
35
		}
36
		public void setCode(String code) {
37
			this.code = code;
38
		}
39
		public String getCaption() {
40
			return caption;
41
		}
42
		public void setCaption(String caption) {
43
			this.caption = caption;
44
		}
45
		
46
	}
47
}