org.teasoft.beex.config.BeeProProfiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bee-ext Show documentation
Show all versions of bee-ext Show documentation
Bee-ext is extending for Bee(a Java ORM framework).
/*
* Copyright 2016-2022 the original author.All rights reserved.
* Kingstar([email protected])
* The license,see the LICENSE file.
*/
package org.teasoft.beex.config;
/**
* BeeProProfiles
* @author Kingstar
* @since 1.11
*/
public class BeeProProfiles {
private Integer type;
private String active;
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getActive() {
return active;
}
public void setActive(String active) {
this.active = active;
}
}