333
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Request.MaterialWarehouse
|
||||
{
|
||||
public class MaterialWarehousePageQuery
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 搜索关键字
|
||||
/// </summary>
|
||||
public string KeyWords { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 主题ID
|
||||
/// </summary>
|
||||
public Guid? MaterialThemeID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 素材主键ID
|
||||
/// </summary>
|
||||
public string MaterialId { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class CoursePageQuery
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 搜索关键字
|
||||
/// </summary>
|
||||
public string KeyWords { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class CoursePageQuery2
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 1=已收藏课程 2=已学习课程
|
||||
/// </summary>
|
||||
public int SearchType { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user