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

cn.authing.sdk.java.dto.RemoveRowDto 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 RemoveRowDto {
    /**
     * 功能 id
     */
    @JsonProperty("modelId")
    private String modelId;
    /**
     * 行 id
     */
    @JsonProperty("rowIdList")
    private List rowIdList;

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

    public List getRowIdList() {
        return rowIdList;
    }
    public void setRowIdList(List rowIdList) {
        this.rowIdList = rowIdList;
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy