Commit 79148dd4 by sikang

bug fix

parent e65b5784
...@@ -142,6 +142,18 @@ public interface UserApi { ...@@ -142,6 +142,18 @@ public interface UserApi {
*/ */
@FormUrlEncoded @FormUrlEncoded
@PUT("record/contact") @PUT("record/contact")
Observable<ResponseBody> submitContactInfo(@Field("parentName") String parentName,
@Field("parentMobile") String parentMobile,
@Field("friendName") String friendName,
@Field("friendMobile") String friendMobile,
@Header("X-AUTH-TOKEN") String token);
/**
* 提交联系人信息
*/
@FormUrlEncoded
@PUT("record/contact")
Observable<ResponseBody> submitContactInfo(@Field("parentId") String parentId, Observable<ResponseBody> submitContactInfo(@Field("parentId") String parentId,
@Field("parentName") String parentName, @Field("parentName") String parentName,
@Field("parentMobile") String parentMobile, @Field("parentMobile") String parentMobile,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment