com.diboot.core.entity.BaseTreeEntity Maven / Gradle / Ivy
Show all versions of diboot-core Show documentation
/*
* Copyright (c) 2015-2029, www.dibo.ltd ([email protected]).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.diboot.core.entity;
import com.diboot.core.config.Cons;
import com.diboot.core.util.S;
import com.diboot.core.util.V;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* 树形结构实体父类
* @author [email protected]
* @version v3.0
* @date 2022/10/12
*/
@Getter
@Setter
@Accessors(chain = true)
public class BaseTreeEntity extends BaseEntity {
private static final long serialVersionUID = 10205L;
/**
* 父级ID
*/
private T parentId;
public BaseTreeEntity setParentId(T parentId) {
this.parentId = parentId;
return this;
}
public T getParentId() {
return this.parentId;
}
/**
* 父级ID的全路径
*
* 格式:/([0-9a-f]+,)+/g
*/
@JsonIgnore
private String parentIdsPath;
public BaseTreeEntity setParentIdsPath(String parentIdsPath) {
if (V.notEmpty(parentIdsPath) && !S.endsWith(parentIdsPath, Cons.SEPARATOR_COMMA)) {
parentIdsPath += Cons.SEPARATOR_COMMA;
}
this.parentIdsPath = parentIdsPath;
return this;
}
}