gongchunyi
15 小时以前 f32de021e7af1627b6d18e681b46dbc0a5b108f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
import lombok.EqualsAndHashCode;
 
@Data
@EqualsAndHashCode(callSuper = true)
public class DocumentationBorrowManagementDto extends DocumentationBorrowManagement {
    /**
     * 文档名称
     */
    @Excel(name = "文档名称")
    private String docName;
 
}