| | |
| | | import java.math.BigDecimal; |
| | | import java.net.URLDecoder; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Arrays; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.regex.Matcher; |
| | | import java.util.regex.Pattern; |
| | | |
| | | public class Constants { |
| | | |
| | |
| | | } |
| | | return birthday; |
| | | } |
| | | |
| | | /** |
| | | * 判断是否为有效车牌号 |
| | | */ |
| | | public static boolean checkCarNo(String str) { |
| | | String patt="^[京津沪冀晋辽吉黑苏浙皖闽赣鲁豫鄂湘粤桂琼川黔云渝藏陕陇青宁新闽粤晋琼使领A_Z]{1}[A_Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$"; |
| | | Pattern r = Pattern.compile(patt); |
| | | Matcher matcher = r.matcher(str); |
| | | return matcher.find(); |
| | | } |
| | | |
| | | public static String getTuominStr(String s){ |
| | | if(StringUtils.isEmpty(s)){ |
| | | return ""; |
| | |
| | | int fk = 1;//普通访客 |
| | | int nb = 2;//内部访客 |
| | | } |
| | | public interface VisitStatus{ |
| | | //审核状态 0待审核 1已提交ERP审批 2审核通过 3审核不通过 4取消 5下发成功 6下发失败 7已签离 |
| | | int waitCheck = 0; |
| | | int submitCheck = 1; |
| | | int pass = 2; |
| | | int noPass = 3; |
| | | int cancel = 4; |
| | | int xfSuccess = 5; |
| | | int xfFail = 6; |
| | | int signout = 7; |
| | | } |
| | | public interface DOOR_ROLE_TYPE{ |
| | | int lw = 0; |
| | | int fk = 1; |
| | |
| | | public static final String ACCESS_ID="ACCESS_ID"; |
| | | public static final String BUCKETNAME = "BUCKETNAME"; |
| | | public static final String OSS = "OSS"; |
| | | public static final String COFFEE_ARTICLE = "COFFEE_ARTICLE"; |
| | | |
| | | public static final String ACCESS_KEY = "ACCESS_KEY"; |
| | | public static final String ENDPOINT = "ENDPOINT"; |
| | |
| | | public static final String SYSTEM ="SYSTEM"; |
| | | |
| | | public static final String COFFEE_BEAN_TASK ="COFFEE_BEAN_TASK"; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | public static final String WX_PLATFORM = "WX_PLATFORM"; |
| | | public static final String WX_PLATFORM_ACCESS_TOKEN = "WX_PLATFORM_ACCESS_TOKEN"; |
| | | public static final String WX_PLATFORM_APPID = "WX_PLATFORM_APPID"; |
| | | public static final String WX_PLATFORM_SECRET = "WX_PLATFORM_SECRET"; |
| | | |
| | | |
| | | |
| | |
| | | return d.longValue(); |
| | | } |
| | | |
| | | |
| | | public interface memberType{ |
| | | int visitor = 0;//普通访客 |
| | | int lw_visitor = 1;//劳务访客 |
| | | int internal = 2;//内部人员 |
| | | } |
| | | public static void main(String[] args) { |
| | | String t = URLDecoder.decode("https://lsqw.gtja.com/qwcos/v-index.html#/loginforProperty?corpId=ww4b7aefafeb430e4b&corpId=ww4b7aefafeb430e4b&agentId=1000005&agentId=1000005&fromRoute=&userCode=013561&userCode=&userId=zz&userId=&encryptUserCode=&custQwId=wmIUuSDgAAR8MhtVY8w90EyKltvoK5fA&custCode=&openId=op1wZwD1dKuBQywmWWS5957zUOJI&name=%E8%B9%84%E8%B9%84&headUrl=http%3A%2F%2Fwx.qlogo.cn%2Fmmhead%2FQ3auHgzwzM4QlibSOAvYcvRMdsoyF3Ua7duLOYSJfB3dsGsYxIYonBw%2F0&dbHeadUrl=https%3A%2F%2Ftgf.gtja.com%2Ff%2F%2Fqwoms%2F2022512%2Fqwoms_1652332606613_8.jpg"); |
| | | System.out.println(t); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 数据状态枚举 |
| | | * |
| | | */ |
| | | public enum Status { |
| | | |
| | | /** 用户启用禁用枚举值*/ |
| | | ENABLE(0,"正常"), |
| | | DISABLE(1,"禁用"); |
| | | |
| | | private Integer value; |
| | | private String des; |
| | | |
| | | |
| | | Status(Integer value, String des) { |
| | | this.value = value; |
| | | this.des = des; |
| | | } |
| | | |
| | | public Integer getValue() { |
| | | return value; |
| | | } |
| | | |
| | | public void setValue(Integer value) { |
| | | this.value = value; |
| | | } |
| | | |
| | | public String getDes() { |
| | | return des; |
| | | } |
| | | |
| | | public void setDes(String des) { |
| | | this.des = des; |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |