13 lines
325 B
Java
13 lines
325 B
Java
package com.bocloud.sms.interfaces;
|
|
|
|
import com.bocloud.sms.model.TrxAuthModel;
|
|
import com.megatron.common.model.GeneralResult;
|
|
|
|
public interface TrxService {
|
|
GeneralResult getRandomstr(String ngxCookie);
|
|
|
|
GeneralResult getAuthToken(TrxAuthModel trxAuthModel);
|
|
|
|
GeneralResult logout(TrxAuthModel trxAuthModel);
|
|
}
|