sgj
9 天以前 ac95a9bf81b312fc36030e54450feb0f360c0703
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.fzzy.igds.app.v1.service;
 
import com.alibaba.fastjson.JSONObject;
import com.fzzy.igds.app.v1.data.AuthUser;
import com.fzzy.igds.app.v1.data.PhoneRequest;
import com.fzzy.igds.app.v1.data.PhoneResponse;
 
 
/**
 *
 */
public interface PhoneService {
 
    public String getInterfaceId();
 
    public PhoneResponse<Object> execute(PhoneRequest<JSONObject> req, AuthUser authUser) throws Exception;
}