1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package cn.flightfeather.supervision.lightshare.vo
|
| /**
| * 用户查询条件
| */
| data class UserSearchCondition(
| /**
| * 场景类型
| * @see [cn.flightfeather.supervision.domain.enumeration.SceneType.value]
| */
| val sceneTypes: List<String> = emptyList(),
|
| /**
| * 街镇行政代码
| */
| val townCodes: List<String> = emptyList(),
|
| val districtName: String? = null,
|
| /**
| * 查询字段,对应企业名称
| */
| val searchText: String = ""
|
| )
|
|