瀏覽代碼

app2.0校内通知接口

临城职教中职
ndbs 2 年之前
父節點
當前提交
cd7c48d018
共有 1 個檔案被更改,包括 19 行新增0 行删除
  1. +19
    -0
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/NewsApi.cs

+ 19
- 0
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/NewsApi.cs 查看文件

@@ -20,6 +20,7 @@ namespace Learun.Application.WebApi.Modules
: base("/learun/news")
{
Get["/list"] = GetList;
Get["/shList"] = GetshList;
}


@@ -85,6 +86,24 @@ namespace Learun.Application.WebApi.Modules
};
return Success(jsonData);
}
/// <summary>
/// 获取页面显示列表数据
/// <summary>
/// <param name="_"></param>
/// <returns></returns>
public Response GetshList(dynamic _)
{
NoticeEntity parameter = this.GetReqData<NoticeEntity>();
var shlist = noticeIBLL.GetEntityByProcessId(parameter.ProgressId);
return Success(shlist);
}
#region 私有类

private class NoticeEntity
{
public string ProgressId { get; set; }
}
#endregion

}


Loading…
取消
儲存