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

com.volcengine.service.vikingDB.common.ID Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
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