abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之二(二十八)
abp(net core)+easyui+efcore實現倉儲管理系統目錄
abp(net core)+easyui+efcore實現倉儲管理系統——ABP總體介紹(一) abp(net core)+easyui+efcore實現倉儲管理系統——解決方案介紹(二) abp(net core)+easyui+efcore實現倉儲管理系統——領域層建立實體(三) abp(net core)+easyui+efcore實現倉儲管理系統——定義倉儲並實現 (四)abp(net core)+easyui+efcore實現倉儲管理系統——建立應用服務(五)
abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之控制器(六)
abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之列表檢視(七) abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之增刪改檢視(八) abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之選單與測試(九) abp(net core)+easyui+efcore實現倉儲管理系統——多語言(十) abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一) abp(net core)+easyui+efcore實現倉儲管理系統——選單-上 (十六)abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI前端頁面框架 (十八)
在上一篇 abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之一(二十七) 文章中我們學習了TreeGrid的一些基礎知識,接下我們來建立我們開發組織管理功能用到的一些類。關於如何建立類我們之前的文章中已經寫了很多了,這裡會有些簡略。
四、定義應用服務介面需要用到的DTO類
為了在進行查詢時使用, PagedOrgResultRequestDto被用來將模組資料傳遞到基礎設施層.
1. 在Visual Studio 2017的“解決方案資源管理器”中,右鍵單擊“ABP.TPLMS.Application”專案,在彈出選單中選擇“新增” > “新建資料夾”,並重命名為“Orgs”
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,然後選擇“新增”。程式碼如下。
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; } } } }5.右鍵單擊“Dto”資料夾,然後選擇“新增” > “類”。 將類命名為 CreateUpdateOrgDto,然後選擇“新增”。程式碼如下。
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; } } }
五、定義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> //用於更新組織資訊 { } }
六、實現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) { } } }七 建立OrgController繼承自TPLMSControllerBase
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; } } }