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

cn.authing.sdk.java.dto.GetRelationInfoDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;


public class GetRelationInfoDto {
    /**
     * 关联 id 列表
     */
    @JsonProperty("idList")
    private List idList;
    /**
     * 功能 id
     */
    @JsonProperty("modelId")
    private String modelId;

    public List getIdList() {
        return idList;
    }
    public void setIdList(List idList) {
        this.idList = idList;
    }

    public String getModelId() {
        return modelId;
    }
    public void setModelId(String modelId) {
        this.modelId = modelId;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy