package com.doumee.dao.business.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2024/3/19 16:52
|
*/
|
@Data
|
public class UploadMultifileDTO {
|
|
|
@ApiModelProperty(value = "业务主键")
|
private Integer businessId;
|
|
@ApiModelProperty(value = "文件路径")
|
private String filePath;
|
|
@ApiModelProperty(value = "文件名称")
|
private String fileName;
|
|
}
|