YzgFileMoveReqVo.java 744 Bytes
Newer Older
yanzg's avatar
yanzg committed
1
package com.yanzuoguang.util.vo.file;
yanzg's avatar
yanzg committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

import com.yanzuoguang.util.vo.BaseVo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

import java.util.ArrayList;
import java.util.List;

/**
 * 移动文件请求参数
 *
 * @author 颜佐光
 */
@ApiModel(description = "移动文件请求参数")
public class YzgFileMoveReqVo extends BaseVo {

    /**
     * 需要移动的文件列表
     */
    @ApiModelProperty(notes = "需要移动的文件列表", position = 1020)
    public List<YzgFileMoveItemReqVo> list = new ArrayList<>();

    public List<YzgFileMoveItemReqVo> getList() {
        return list;
    }

    public void setList(List<YzgFileMoveItemReqVo> list) {
        this.list = list;
    }
}