コード例 #1
0
ファイル: AgentController.java プロジェクト: kingoin/kgecp
 // 查询今天已经联系的客户
 public String todayRelationCustomer() {
   Agent agent = CRMHelper.getCurrentAgent();
   List<Customer> list = service.todayRelationCustomer(agent);
   this.getRequest().setAttribute("customerList", list);
   return "todayRelation";
 }