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

cloud.unionj.generator.backend.docparser.entity.VoEnum Maven / Gradle / Ivy

There is a newer version: 1.6.7
Show newest version
package cloud.unionj.generator.backend.docparser.entity;

import lombok.Data;

/**
 * @author created by wubin
 * @version v0.1
 *   cloud.unionj.generator.backend.docparser.entity
 *  date 2020/12/21
 */
@Data
public class VoEnum {

  private String name;
  private String value;

  public VoEnum(String name, String value) {
    this.name = name;
    this.value = value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy