22 lines
513 B
C#
22 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Request.Label
|
|
{
|
|
public class ShopLabelSearch
|
|
{
|
|
/// <summary>
|
|
/// 查询类型 0=没选此条件 1= 或关系 2= 且关系
|
|
/// </summary>
|
|
public int SearchType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选中的标签ID数组
|
|
/// </summary>
|
|
public List<Guid> LabelIds { get; set; }
|
|
}
|
|
}
|