package com.cloudclinic.decoct.mvp; import com.cloudclinic.decoct.entity.LableInfo; import com.ruochen.common.base.BaseModel; import com.ruochen.common.base.BaseView; import io.reactivex.Observable; import retrofit2.http.Field; import retrofit2.http.FormUrlEncoded; import retrofit2.http.POST; public interface MainCovenant { interface MvpView extends BaseView { } interface MvpStores { @FormUrlEncoded @POST("/prod-api/yfc-admin/prescription/medicineChestAPI/scanLabel") Observable> getLabel(@Field("preNo") String preNo); @FormUrlEncoded @POST("/prod-api/yfc-admin/prescription/medicineChestAPI/getawayVerify") Observable> getMedicine(@Field("preNo") String preNo); @FormUrlEncoded @POST("/prod-api/yfc-admin/prescription/medicineChestAPI/callForMedicationCollection") Observable notify(@Field("preNo") String preNo); } interface Presenter { } }