package com.gk.firework.Domain.Vo;
|
|
import com.gk.firework.Domain.EnterpriseFeed;
|
import org.springframework.web.multipart.MultipartFile;
|
|
public class EnterpriseFeedVo extends EnterpriseFeed {
|
|
private MultipartFile[] file;
|
|
|
public MultipartFile[] getFile() {
|
return file;
|
}
|
|
public void setFile(MultipartFile[] file) {
|
this.file = file;
|
}
|
}
|