1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.ycl.platform.domain.query;
|
| import com.ycl.platform.base.AbsQuery;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| /**
| * 运维单位查询
| *
| * @author xp
| * @since 2024-03-04
| */
| @Data
| @Accessors(chain = true)
| @ApiModel(value = "YwUnit查询", description = "运维单位查询")
| public class YwUnitQuery extends AbsQuery {
| }
|
|