package com.ks.app.utils.user; /** * @author hxh * @title: UserVOUtil * @description: TODO * @date 2022/4/18 15:45 */ public class UserVOUtil { public static String getCoverPhone(String phone) { if (phone == null) { return phone; } if (phone.length() >= 5) { String st = phone.substring(0, 3); st += "******"; st += phone.substring(phone.length() - 2, phone.length()); return st; } return phone; } }