parent
2d59fbf751
commit
3099fce75b
@ -0,0 +1,42 @@ |
|||||||
|
package com.alops.system.domain.dto; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
|
||||||
|
@ApiModel("VLAN网络修改DTO,仅用于修改IP和子网掩码") |
||||||
|
public class EquVlanNetworkUpdateDto { |
||||||
|
|
||||||
|
@ApiModelProperty(value = "唯一VLAN ID", required = true, example = "VLAN") |
||||||
|
private String id; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "IPv4地址", example = "") |
||||||
|
private String ipAddress; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "子网掩码", example = "") |
||||||
|
private String subnetMask; |
||||||
|
|
||||||
|
public String getid() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setid(String id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public String getIpAddress() { |
||||||
|
return ipAddress; |
||||||
|
} |
||||||
|
|
||||||
|
public void setIpAddress(String ipAddress) { |
||||||
|
this.ipAddress = ipAddress; |
||||||
|
} |
||||||
|
|
||||||
|
public String getSubnetMask() { |
||||||
|
return subnetMask; |
||||||
|
} |
||||||
|
|
||||||
|
public void setSubnetMask(String subnetMask) { |
||||||
|
this.subnetMask = subnetMask; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue