摘要:
@NotEmpty 用在集合上面(不能注释枚举) @NotBlank用在String上面 @NotNull用在所有类型上面 1. @NotEmpty Asserts that the annotated string, collection, map or array is not {@code n 阅读全文
posted @ 2020-03-19 10:27
ㄓㄤㄑㄧㄤ
阅读(311)
评论(0)
推荐(0)
摘要:
第一种方式:将手机号码中间四位隐藏 select REPLACE(mobile, SUBSTR(mobile,4,4), 'XXXX') from sys_users 第二种方式:将手机号码中间四位隐藏(推荐使用) select insert(mobile, 4, 4, '****') from s 阅读全文
posted @ 2020-03-19 10:26
ㄓㄤㄑㄧㄤ
阅读(1798)
评论(0)
推荐(0)