点这里进入ABP进阶教程目录 

打开应用层(即JD.CRS.Application)的Course\Dto\GetAllCoursesInput.cs //Course数据传输对象(查询条件)

增加一行代码

public string Keyword { get; set; } //用于全文搜索
 1 using Abp.Application.Services.Dto;
 2 using JD.CRS.Entitys;
 3 
 4 namespace JD.CRS.Course.Dto
 5 {
 6     public class GetAllCoursesInput: PagedResultRequestDto
 7     {
 8         public StatusCode? Status { get; set; }
 9         public string Keyword { get; set; }
10     }
11 }
View Code

相关文章:

  • 2021-06-03
  • 2021-10-21
  • 2021-06-11
  • 2022-01-31
  • 2022-02-09
  • 2021-09-07
  • 2022-12-23
  • 2021-06-12
猜你喜欢
  • 2021-09-15
  • 2021-12-29
  • 2021-07-16
  • 2022-02-03
  • 2021-08-22
  • 2022-12-23
  • 2021-11-11
相关资源
相似解决方案