Back to project page qrcode-android.
The source code is released under:
MIT License
If you think the Android project qrcode-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package tw.soleil.service; //w w w . j ava 2s. co m import java.util.Map; import retrofit.http.POST; import retrofit.http.QueryMap; import tw.soleil.to.Invoice; public interface InvoiceService { @POST("/PB2CAPIVAN/invapp/InvApp") public Invoice getInvoice(@QueryMap Map<String, String> queryMap); }