All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.web.model.dao.mongodb.entity.FSNode Maven / Gradle / Ivy

The newest version!
package com.arextest.web.model.dao.mongodb.entity;

import java.util.List;
import lombok.Data;

@Data
public class FSNode {

  private String nodeName;
  private Integer nodeType;
  private String infoId;
  private String method; // available for nodeType equal 1
  /**
   * availbale for nodeType equal 2
   *
   * @see com.arextest.web.model.enums.CaseSourceType
   */
  private int caseSourceType;
  private List labelIds;
  private List children;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy