1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.jilongda.manage.authority.dto;
|
| import com.jilongda.manage.authority.model.SecResources;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
|
| /**
| * @author xiaochen
| * @ClassName SysResDTO
| * @Description
| * @date 2021-04-20 10:25
| */
| @EqualsAndHashCode(callSuper = true)
| @Data
| @ApiModel("资源dto")
| public class SecResDTO extends SecResources {
| }
|
|