com.chanjx.utils.entity.http.HttpFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chanjx-utils Show documentation
Show all versions of chanjx-utils Show documentation
A util to improve development efficiency
The newest version!
package com.chanjx.utils.entity.http;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import java.io.Serializable;
import java.util.List;
/**
* @author 陈俊雄
* @since 2020/10/20
**/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class HttpFiles implements Serializable {
private String key;
private List files;
public HttpFiles(String key, List files) {
this.key = key;
this.files = files;
}
}