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.
starter-nginx-admin/src/main/java/xyz/wbsite/module/admin/rsp/ServicesCreateResponse.java

27 lines
420 B

package xyz.wbsite.module.admin.rsp;
import xyz.wbsite.frame.base.BaseResponse;
/**
* ServicesCreateResponse - 虚拟主机
*
* @author wangbing
* @version 0.0.1
* @since 2021-02-07
*/
public class ServicesCreateResponse extends BaseResponse {
/**
* 主键
*/
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}

Powered by TurnKey Linux.