|
@@ -1,17 +1,10 @@
|
|
|
package cn.fastfun.service;
|
|
|
|
|
|
import cn.fastfun.controller.param.*;
|
|
|
-import cn.fastfun.service.entity.AppDevice;
|
|
|
import cn.fastfun.service.entity.AppDeviceLog;
|
|
|
-import com.bridge.dto.ApiDTO;
|
|
|
-import com.bridge.dto.QueryParamExp;
|
|
|
import com.bridge.service.JpaService;
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
-import io.swagger.annotations.ApiParam;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -56,4 +49,9 @@ public interface AppDeviceLogService extends JpaService<AppDeviceLog, String> {
|
|
|
*/
|
|
|
void handle(HandelFormParam param);
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取客户列表
|
|
|
+ * @return java.util.List<java.util.Map<java.lang.String,java.lang.Object>>
|
|
|
+ */
|
|
|
+ List<Map<String,Object>> getCustomList();
|
|
|
}
|