| | |
| | | */ |
| | | List<Tree> referTree(UIFormReferVO referConfigVO, TreeQueryObject queryObject); |
| | | |
| | | |
| | | /** |
| | | * 是否为修改忽略的属性 |
| | | * @param attrName 属性的名字 |
| | | * @return true 表示应该忽略 |
| | | */ |
| | | boolean checkUnAttrUnEdit(String attrName); |
| | | // { |
| | | // return (VciQueryWrapperForDO.OID_FIELD.equalsIgnoreCase(attrName) |
| | | // ||"ts".equalsIgnoreCase(attrName) |
| | | // || "lastmodifier".equalsIgnoreCase(attrName) |
| | | // || "lastmodifytime".equalsIgnoreCase(attrName) |
| | | // || "createtime".equalsIgnoreCase(attrName) |
| | | // || "checkintime".equalsIgnoreCase(attrName) |
| | | // ||"checkouttime".equalsIgnoreCase(attrName)); |
| | | // } |
| | | default boolean checkUnAttrUnEdit(String attrName){ |
| | | return (VciQueryWrapperForDO.OID_FIELD.equalsIgnoreCase(attrName) |
| | | ||"ts".equalsIgnoreCase(attrName) |
| | | || "lastmodifier".equalsIgnoreCase(attrName) |
| | | || "lastmodifytime".equalsIgnoreCase(attrName) |
| | | || "createtime".equalsIgnoreCase(attrName) |
| | | || "checkintime".equalsIgnoreCase(attrName) |
| | | ||"checkouttime".equalsIgnoreCase(attrName)); |
| | | } |
| | | |
| | | } |