package com.vci.dto;
|
|
import com.vci.common.qt.object.ChildrenInfo;
|
import com.vci.common.qt.object.ConditionItem;
|
import com.vci.common.qt.object.LeafInfo;
|
import lombok.Data;
|
|
import java.util.Iterator;
|
import java.util.Map;
|
|
/**
|
* 条件列表传输对象
|
* @author yuxc
|
* @date 2024/9/4
|
*/
|
@Data
|
public class ConditionItemDTO {
|
private String id;
|
private LeafInfoDTO leafInfo;
|
private ChildrenInfo childrenInfo;
|
private boolean leafFlag;
|
|
public ConditionItemDTO() {
|
}
|
|
public String getId() {
|
return this.id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public LeafInfoDTO getLeafInfo() {
|
return this.leafInfo;
|
}
|
|
public void setLeafInfo(LeafInfoDTO leafInfo) {
|
this.leafInfo = leafInfo;
|
}
|
|
public ChildrenInfo getChildrenInfo() {
|
return this.childrenInfo;
|
}
|
|
public void setChildrenInfo(ChildrenInfo childrenInfo) {
|
this.childrenInfo = childrenInfo;
|
}
|
|
public boolean isLeaf() {
|
return this.leafFlag;
|
}
|
|
public void setLeafFlag(boolean leafFlag) {
|
this.leafFlag = leafFlag;
|
}
|
}
|