1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.gkhy.safePlatform.equipment.model.dto.req;
|
| import com.gkhy.safePlatform.equipment.annotation.Query;
|
| public class EquipmentTypeMngQueryCriteria {
| @Query()
| private Long parentId;
| //父级ID,如果没有父级,为0
| public Long getParentId() {
| return parentId;
| }
|
| public void setParentId(Long parentId) {
| this.parentId = parentId;
| }
| }
|
|