Merge branch 'dev' of http://git.estsh.com/i3-MES/i3plus-mes-pcn into dev
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.yun-zuoyi
parent
c05e3b13c6
commit
ef1450e912
@ -0,0 +1,31 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/19 7:00 PM
|
||||
* @Description:
|
||||
**/
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Api("FastDfs文件model")
|
||||
public class FastDfsDownloadModel {
|
||||
|
||||
@ApiParam("部分相对路径")
|
||||
private String dirPath;
|
||||
|
||||
@ApiParam("文件名称")
|
||||
private String fileName;
|
||||
|
||||
@ApiParam("文件字节")
|
||||
private byte[] fileByte;
|
||||
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/19 7:00 PM
|
||||
* @Description:
|
||||
**/
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Api("FastDfs文件model")
|
||||
public class FastDfsDownloadModel {
|
||||
|
||||
@ApiParam("部分相对路径")
|
||||
private String dirPath;
|
||||
|
||||
@ApiParam("文件名称")
|
||||
private String fileName;
|
||||
|
||||
@ApiParam("文件字节")
|
||||
private byte[] fileByte;
|
||||
|
||||
}
|
Loading…
Reference in New Issue