Quellcode durchsuchen

客户池管理 机构 typeahead

XMTT vor 8 Jahren
Ursprung
Commit
ad886b4e94

+ 40 - 3
src/main/java/com/ekexiu/console/system/dao/ViewCustomerDao.java

@ -10,16 +10,53 @@ import org.jfw.apt.orm.annotation.dao.param.Like;
10 10
import org.jfw.util.PageQueryResult;
11 11
12 12
import java.sql.Connection;
13
import java.sql.PreparedStatement;
14
import java.sql.ResultSet;
13 15
import java.sql.SQLException;
16
import java.util.ArrayList;
17
import java.util.List;
14 18
15 19
@DAO
16
public interface ViewCustomerDao {
20
public abstract class ViewCustomerDao {
17 21
	@Nullable
18 22
	@SelectOne
19
	ViewCustomer query(Connection con, String id) throws SQLException;
23
	public abstract ViewCustomer query(Connection con, String id) throws SQLException;
20 24
	
21 25
	@PageSelect
22 26
	@OrderBy(" ORDER BY create_time")
23
	PageQueryResult<ViewCustomer> query(Connection con, @Like String name, @Like String address, @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
27
	public abstract PageQueryResult<ViewCustomer> query(Connection con, @Like String name, @Like String address, @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
24 28
29
	public java.util.List<ViewCustomer> orgName(Connection con,String orgname) throws SQLException{
30
		int index = 1;
31
		boolean oname = null == orgname;
32
		StringBuilder sql = new StringBuilder();
33
		sql.append("SELECT ORGNAME FROM view_customer");
34
		if(!oname){
35
			sql.append(" WHERE ORGNAME LIKE ? group by orgname");
36
		}
37
		PreparedStatement ps = con.prepareStatement(sql.toString());
38
		try{
39
			if(!oname){
40
				ps.setString(index++,orgname);
41
			}
42
			ResultSet rs = ps.executeQuery();
43
			try{
44
				List<ViewCustomer> viewCustomers = new ArrayList<ViewCustomer>();
45
				while(rs.next()){
46
					ViewCustomer viewCustomer =  new ViewCustomer();
47
					String orgName = rs.getString(1);
48
					if(rs.wasNull()){
49
						orgName = null;
50
					}
51
					viewCustomer.setOrgname(orgName);
52
					viewCustomers.add(viewCustomer);
53
				}
54
				return viewCustomers;
55
			}finally{
56
				try{rs.close();}catch(Exception e){}
57
			}
58
		}finally{
59
			try{ps.close();}catch(Exception e){}
60
		}
61
	}
25 62
}

+ 23 - 1
src/main/java/com/ekexiu/console/system/service/ViewCustomerService.java

@ -14,6 +14,8 @@ import org.jfw.util.PageQueryResult;
14 14
15 15
import java.sql.Connection;
16 16
import java.sql.SQLException;
17
import java.util.ArrayList;
18
import java.util.List;
17 19
18 20
@Path("/sys/viewcustomer")
19 21
public class ViewCustomerService {
@ -52,5 +54,25 @@ public class ViewCustomerService {
52 54
	@Path("/id/{id}")
53 55
	public ViewCustomer query(@JdbcConn Connection con, @PathVar String id)throws SQLException{
54 56
		return this.viewCustomerDao.query(con, id);
55
	}	
57
	}
58
59
	@Get
60
	@Path("/orgName")
61
	public List<TestService.TypeaheadItem> get(@JdbcConn Connection con, String q, @DefaultValue("11") int s) throws SQLException{
62
		String key=null;
63
		if(q!=null)
64
		{
65
			key="%"+q+"%";
66
		}
67
		List<TestService.TypeaheadItem> ret = new ArrayList<>(s);
68
		List<ViewCustomer> typeahead = this.viewCustomerDao.orgName(con, key);
69
		for (ViewCustomer viewCustomer : typeahead) {
70
			TestService.TypeaheadItem thi = new TestService.TypeaheadItem();
71
			thi.setCode(viewCustomer.getOrgname());
72
			thi.setCaption(viewCustomer.getOrgname());
73
			ret.add(thi);
74
		}
75
		return ret;
76
	}
77
56 78
}