Files
HTCloud/HT.Cloud.Code/LayUI/FilterSo.cs

45 lines
711 B
C#
Raw Permalink Normal View History

2023-03-03 16:07:50 +08:00
using System.Collections.Generic;
namespace HT.Cloud.Code
{
public class FilterSo
{
/**
* id
*/
public long id { get; set; }
/**
* andor
*/
public string prefix { get; set; }
/**
* inconditiondate
*/
public string mode { get; set; }
/**
*
*/
public string field { get; set; }
/**
*
*/
public string type { get; set; }
/**
*
*/
public string split { get; set; }
/**
*
*/
public string value { get; set; }
/**
*
*/
public List<string> values { get; set; }
/**
*
*/
public List<FilterSo> children { get; set; }
}
}