Merge branch 'master' of http://git.komect.net/DDOSAQ/phoenix_ddos_handle
This commit is contained in:
commit
d55916fdf0
|
@ -44,17 +44,20 @@ public class AddCapacityInfo {
|
||||||
/**
|
/**
|
||||||
* The Ip type.
|
* The Ip type.
|
||||||
*/
|
*/
|
||||||
|
@NotNull(message = "ipType IP地址类型不能为空", groups = ValidGroups.AddDeviceValid.class)
|
||||||
@ValidBaseEnum(enumClass = IpAddrType.class, groups = ValidGroups.AddDeviceValid.class)
|
@ValidBaseEnum(enumClass = IpAddrType.class, groups = ValidGroups.AddDeviceValid.class)
|
||||||
private Integer ipType;
|
private Integer ipType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Protect ip.
|
* The Protect ip.
|
||||||
*/
|
*/
|
||||||
|
@NotNull(message = "protectIp 处置IP不能为空", groups = ValidGroups.AddDeviceValid.class)
|
||||||
@ValidIpSegment(message = "protectIp Ip地址格式错误", groups = ValidGroups.AddDeviceValid.class)
|
@ValidIpSegment(message = "protectIp Ip地址格式错误", groups = ValidGroups.AddDeviceValid.class)
|
||||||
private String protectIp;
|
private String protectIp;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Reserve netflow.
|
* The Reserve netflow.
|
||||||
*/
|
*/
|
||||||
|
@NotNull(message = "reserveNetflow 清洗储备流量不能为空", groups = ValidGroups.AddDeviceValid.class)
|
||||||
private Integer reserveNetflow;
|
private Integer reserveNetflow;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue