DiskCloudDiskUserParam.java 787 Bytes
Newer Older
1 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 32 33 34
package cn.timer.api.dto.disk;

import cn.timer.api.config.exception.ValidationMsg;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import javax.validation.constraints.NotNull;
import java.io.Serializable;

/**
 * @author wuqingjun
 * @email 284718418@qq.com
 * @date 2021/12/31
 */
@Data
public class DiskCloudDiskUserParam implements Serializable {

    private static final long serialVersionUID = -1230023773946170911L;
    /**
     * 资源目录表ID
     */
    @ApiModelProperty(value = "资源目录表ID")
    private Integer catalogueId;
    /**
     * 当前企业id
     */
    @ApiModelProperty(value = "当前企业id")
    private Integer orgId;
    /**
     * 用户ID
     */
    @ApiModelProperty(value = "用户ID")
    private Integer userId;
}