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;
|
|
}
|