cn.authing.sdk.java.dto.RemoveRelationValueDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class RemoveRelationValueDto {
/**
* 关联数据
*/
@JsonProperty("value")
private String value;
/**
* 字段 id
*/
@JsonProperty("fieldIds")
private List fieldIds;
/**
* 行 id
*/
@JsonProperty("rowId")
private String rowId;
/**
* 功能 id
*/
@JsonProperty("modelId")
private String modelId;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public List getFieldIds() {
return fieldIds;
}
public void setFieldIds(List fieldIds) {
this.fieldIds = fieldIds;
}
public String getRowId() {
return rowId;
}
public void setRowId(String rowId) {
this.rowId = rowId;
}
public String getModelId() {
return modelId;
}
public void setModelId(String modelId) {
this.modelId = modelId;
}
}