Blame view

ShehuihuaService.java 727 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
package com.subsidy.service;

import com.subsidy.vo.renshe.RensheResponseVO;
import com.subsidy.vo.renshe.RensheStringVO;

import java.io.IOException;
import java.util.List;

public interface ShehuihuaService {


    RensheResponseVO getClassCodeByPrivateKey()throws IOException;

    RensheResponseVO uploadClass() throws IOException;

    RensheResponseVO classHourBehavior() throws IOException;

    RensheResponseVO uploadChapterBehavior() throws IOException;

    RensheResponseVO uploadClassAnswerQuestionBehavior()throws IOException;

    List<RensheResponseVO> uploadImage()throws IOException;

    RensheResponseVO getErrorClass()throws IOException;

    RensheStringVO clear()throws IOException;

    void test();

}