1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| 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;
|
| }
|
|