IProject.cs 900 B

1234567891011121314151617181920
  1. using Common;
  2. namespace Feign
  3. {
  4. public class IProject
  5. {
  6. // public static List<PageForMiniProgramVo> GetPageForMiniProgram(List<int> moduleIdList)
  7. // {
  8. // string content = Function.GetWebRequest(Utils.FeignUrl["ym_material"] + "/v1/pub/pageForMiniProgram?moduleIdList=" + Newtonsoft.Json.JsonConvert.SerializeObject(moduleIdList).Replace("[", "").Replace("]", ""));
  9. // Utils.WriteLog(content, "GetPageForMiniProgram");
  10. // return Newtonsoft.Json.JsonConvert.DeserializeObject<List<PageForMiniProgramVo>>(content);
  11. // }
  12. // public static List<ModuleTreeVo> getProject()
  13. // {
  14. // string content = Function.GetWebRequest(Utils.FeignUrl["ym_material"] + "/v1/pub/getBlockForModuleList");
  15. // return Newtonsoft.Json.JsonConvert.DeserializeObject<List<ModuleTreeVo>>(content);
  16. // }
  17. }
  18. }