package com.vci.ubcs.code.webservice.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 rightAttributes; private List leftAttributes; @Override public String toString() { return "DokingAttributeSerchVO{" + "classifyId='" + classifyId + '\'' + ", searchValue='" + searchValue + '\'' + ", flag=" + flag + ", rightAttributes=" + rightAttributes + ", leftAttributes=" + leftAttributes + '}'; } }