abp(net core)+easyui+efcore實現倉儲管理系統——建立應用服務(五)html
abp(net core)+easyui+efcore實現倉儲管理系統——展示層實現增刪改查之控制器(六)前端
abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI前端頁面框架 (十八) json
在上一篇 abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之一(二十七) 文章中咱們學習了TreeGrid的一些基礎知識,接下咱們來建立咱們開發組織管理功能用到的一些類。關於如何建立類咱們以前的文章中已經寫了不少了,這裏會有些簡略。app
4、定義應用服務接口須要用到的DTO類框架
爲了在進行查詢時使用, PagedOrgResultRequestDto被用來將模塊數據傳遞到基礎設施層.函數
1. 在Visual Studio 2017的「解決方案資源管理器」中,右鍵單擊「ABP.TPLMS.Application」項目,在彈出菜單中選擇「添加」 > 「新建文件夾」,並重命名爲「Orgs」post
2. 使用鼠標右鍵單擊咱們剛纔建立的「Orgs」文件夾,在彈出菜單中選擇「添加」 > 「新建文件夾」,並重命名爲「Dto」。學習
3.右鍵單擊「Dto」文件夾,而後選擇「添加」 > 「類」。 將類命名爲 Paged OrgResultRequestDto,而後選擇「添加」。代碼以下。測試
using Abp.Application.Services.Dto; using Abp.Application.Services.Dto; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Orgs.Dto { public class PagedOrgResultRequestDto : PagedResultRequestDto { public string Keyword { get; set; } } }
4.右鍵單擊「Dto」文件夾,而後選擇「添加」 > 「類」。 將類命名爲 OrgDto,而後選擇「添加」。代碼以下。ui
using Abp.Application.Services.Dto; using Abp.AutoMapper; using ABP.TPLMS.Entitys; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Orgs.Dto { [AutoMapFrom(typeof(Org))] public class OrgDto : EntityDto<int> { int m_parentId = 0; public string Name { get; set; } public string HotKey { get; set; } public int ParentId { get { return m_parentId; } set { m_parentId = value; } } public string ParentName { get; set; } public bool IsLeaf { get; set; } public bool IsAutoExpand { get; set; } public string IconName { get; set; } public int Status { get; set; } public int Type { get; set; } public string BizCode { get; set; } public string CustomCode { get; set; } public DateTime CreationTime { get; set; } public DateTime UpdateTime { get; set; } public int CreateId { get; set; } public int SortNo { get; set; } public int _parentId { get { return m_parentId; } } } }
using Abp.Application.Services.Dto; using Abp.AutoMapper; using ABP.TPLMS.Entitys; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace ABP.TPLMS.Orgs.Dto { [AutoMapTo(typeof(Org))] public class CreateUpdateOrgDto : EntityDto<int> { public string Name { get; set; } [StringLength(255)] public string HotKey { get; set; } public int ParentId { get; set; } [Required] [StringLength(255)] public string ParentName { get; set; } public bool IsLeaf { get; set; } public bool IsAutoExpand { get; set; } [StringLength(255)] public string IconName { get; set; } public int Status { get; set; } public int Type { get; set; } [StringLength(255)] public string BizCode { get; set; } [StringLength(100)] public string CustomCode { get; set; } public DateTime CreationTime { get; set; } public DateTime UpdateTime { get; set; } public int CreateId { get; set; } public int SortNo { get; set; } } }
5、定義IOrgAppService接口
6. 在Visual Studio 2017的「解決方案資源管理器」中,鼠標右鍵單擊「Org」文件夾,而後選擇「添加」 > 「新建項」,在彈出對話框中選擇「接口」。爲應用服務定義一個名爲 IOrgAppService
的接口。代碼以下。
using System; using System.Collections.Generic; using System.Text; using Abp.Application.Services; using ABP.TPLMS.Orgs.Dto; namespace ABP.TPLMS.Orgs { public interface IOrgAppService : IAsyncCrudAppService<//定義了CRUD方法 OrgDto, //用來展現組織信息 int, //Org實體的主鍵 PagedOrgResultRequestDto, //獲取組織信息的時候用於分頁 CreateUpdateOrgDto, //用於建立組織信息 CreateUpdateOrgDto> //用於更新組織信息 { } }
6、實現IOrgAppService
7.在Visual Studio 2017的「解決方案資源管理器」中,右鍵單擊「Org」文件夾,而後選擇「添加」 > 「新建項」,在彈出對話框中選擇「類」。爲應用服務定義一個名爲 OrgAppService
的服務類。代碼以下。
using Abp.Application.Services; using Abp.Domain.Repositories; using ABP.TPLMS.Entitys; using ABP.TPLMS.Orgs.Dto; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Orgs { public class OrgAppService : AsyncCrudAppService<Org, OrgDto, int, PagedOrgResultRequestDto, CreateUpdateOrgDto, CreateUpdateOrgDto>, IOrgAppService { public OrgAppService(IRepository<Org, int> repository) : base(repository) { } } }
1. 在Visual Studio 2017的「解決方案資源管理器」中,右鍵單擊在領域層「ABP.TPLMS.Web.Mvc」項目中的Controller目錄。 選擇「添加」 > 「新建項…」。以下圖。
2. 在彈出對話框「添加新項-ABP.TPLMS.Web.Mvc」中選擇「控制器類」,而後在名稱輸入框中輸入「OrgsController」,而後點擊「添加」按鈕。
3.在OrgsController.cs文件中輸入以下代碼,經過構造函數注入對應用服務的依賴。
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Abp.AspNetCore.Mvc.Authorization; using Abp.Web.Models; using ABP.TPLMS.Controllers; using ABP.TPLMS.Orgs; using ABP.TPLMS.Orgs.Dto; using ABP.TPLMS.Web.Models.Orgs; using Microsoft.AspNetCore.Mvc; namespace ABP.TPLMS.Web.Controllers { [AbpMvcAuthorize] public class OrgsController : TPLMSControllerBase { private readonly IOrgAppService _orgAppService; private const int MAX_COUNT= 1000; public OrgsController(IOrgAppService orgAppService) { _orgAppService = orgAppService; } [HttpGet] // GET: /<controller>/ public IActionResult Index() { return View(); } [DontWrapResult] [HttpPost] public string List() { PagedOrgResultRequestDto paged = new PagedOrgResultRequestDto(); paged.MaxResultCount = MAX_COUNT; var userList = _orgAppService.GetAll(paged).GetAwaiter().GetResult().Items; int total = userList.Count; var json = JsonEasyUI(userList, total); return json; } } }