eleme.openapi.sdk.api.entity.openShop.DivisionInfoVO Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.openShop;
public class DivisionInfoVO{
/**
* 行政区划id
*/
private Integer id;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
/**
* 行政区划名称
*/
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* 行政区划父id
*/
private Integer parentId;
public Integer getParentId() {
return parentId;
}
public void setParentId(Integer parentId) {
this.parentId = parentId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy