赞
踩
@ApiModelProperty(required=true,value="钱箱(设备)唯一标识")
@NotNull
@Pattern(regexp="[-_ a-zA-Z0-9]{1,32)}")
publicStringgetDeviceCode({
returndeviceCode;
}
required=true :代表参数必传
value="钱箱(设备)唯一标识" :用于描述字段
@NotNull :表示参数不能为空,但是可以为 "" ;
@Pattern(regexp="[-_ a-zA-Z0-9]{1,32)}") : 代表正则表达式验证,表示该参数只能有大小写字母和数字组成,长度为1-32位。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。