com.volcengine.service.vikingDB.common.ID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.vikingDB.common;
import java.util.List;
import lombok.Data;
@Data
public class ID {
String stringID = null;
Integer integerID = null;
List listIntegerID = null;
List listStringID = null;
public ID(){}
public ID setStringID(String stringID){
this.stringID = stringID;
return this;
}
public ID setIntegerID(Integer integerID){
this.integerID = integerID;
return this;
}
public ID setListIntegerID(List listIntegerID){
this.listIntegerID = listIntegerID;
return this;
}
public ID setListStringID(List listStringID){
this.listStringID = listStringID;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy