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 com.ruoyi.warehouse.dto;
|
| import com.ruoyi.framework.aspectj.lang.annotation.Excel;
| import com.ruoyi.warehouse.pojo.DocumentationBorrowManagement;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| public class DocumentationBorrowManagementDto extends DocumentationBorrowManagement {
| /**
| * 文档名称
| */
| @Excel(name = "文档名称")
| private String docName;
| /**
| * 借阅人
| */
| @Excel(name = "借阅人")
| private String nickName;
| /**
| * 归还人
| */
| @Excel(name = "归还人")
| private String returnNickName;
| }
|
|