123456789101112131415161718192021222324252627282930313233343536 |
- using efunbox_xyyf_windows.baseMvp;
- using efunbox_xyyf_windows.bean;
- using efunbox_xyyf_windows.contract;
- using efunbox_xyyf_windows.util;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace efunbox_xyyf_windows.model
- {
- public class MainModel : BaseModel, MainContract.IModel
- {
-
-
- public HttpResult getLenvIdByToken(HttpItem httpItem)
- {
-
- return HttpUtil.HttpRequest(httpItem);
-
- }
- }
- }
|