package kr.wisestone.owl.web.condition;
|
|
import com.google.common.collect.Lists;
|
import kr.wisestone.owl.util.ConvertUtil;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* Created by wisestone on 2018-02-27.
|
*/
|
public class AttachedFileCondition {
|
private Long workspaceId;
|
private Long issueId;
|
private List<Long> issueIds = Lists.newArrayList();
|
|
public AttachedFileCondition(){}
|
|
public static AttachedFileCondition make(Map<String, Object> conditions) {
|
AttachedFileCondition condition = ConvertUtil.convertMapToClass(conditions, AttachedFileCondition.class);
|
return condition;
|
}
|
|
public Long getWorkspaceId() {
|
return workspaceId;
|
}
|
|
public void setWorkspaceId(Long workspaceId) {
|
this.workspaceId = workspaceId;
|
}
|
|
public Long getIssueId() {
|
return issueId;
|
}
|
|
public void setIssueId(Long issueId) {
|
this.issueId = issueId;
|
}
|
|
public List<Long> getIssueIds() {
|
return issueIds;
|
}
|
|
public void setIssueIds(List<Long> issueIds) {
|
this.issueIds = issueIds;
|
}
|
}
|