package com.vci.ubcs.code.applyjtcodeservice.vo;
|
|
import com.vci.ubcs.code.vo.pagemodel.CodeClassifyTemplateAttrVO;
|
import lombok.Data;
|
|
import java.util.List;
|
@Data
|
public class DokingAttributeSerchVO {
|
|
private String classifyId;
|
private String searchValue;
|
private boolean flag;
|
private List<CodeClassifyTemplateAttrVO> rightAttributes;
|
private List<CodeClassifyTemplateAttrVO> leftAttributes;
|
|
@Override
|
public String toString() {
|
return "DokingAttributeSerchVO{" +
|
"classifyId='" + classifyId + '\'' +
|
", searchValue='" + searchValue + '\'' +
|
", flag=" + flag +
|
", rightAttributes=" + rightAttributes +
|
", leftAttributes=" + leftAttributes +
|
'}';
|
}
|
}
|