cn.authing.sdk.java.dto.CreatePostDto 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 CreatePostDto {
/**
* 分组 code
*/
@JsonProperty("code")
private String code;
/**
* 分组名称
*/
@JsonProperty("name")
private String name;
/**
* 分组描述
*/
@JsonProperty("description")
private String description;
/**
* 部门 id 列表
*/
@JsonProperty("departmentIdList")
private String departmentIdList;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDepartmentIdList() {
return departmentIdList;
}
public void setDepartmentIdList(String departmentIdList) {
this.departmentIdList = departmentIdList;
}
}