You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
422 B
27 lines
422 B
package xyz.wbsite.module.admin.rsp;
|
|
|
|
import xyz.wbsite.frame.base.BaseResponse;
|
|
|
|
/**
|
|
* LocationsCreateResponse - 路径配置
|
|
*
|
|
* @author wangbing
|
|
* @version 0.0.1
|
|
* @since 2021-02-08
|
|
*/
|
|
public class LocationsCreateResponse extends BaseResponse {
|
|
|
|
/**
|
|
* 主键
|
|
*/
|
|
private Long id;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
}
|