新路交工具类创建

This commit is contained in:
lijia 2024-11-25 09:54:05 +08:00
parent 0b2d42c090
commit 9388a6ac87

View File

@ -0,0 +1,24 @@
package com.arpa.hndahesudintocctmsdriver.util;
/**
* @ClassName NewLJUtils
* @Author john
* @Date 2024/11/25 09:53
* @Description TODO
*/
public class NewLJUtils {
private static class SingletonHolder {
private static final NewLJUtils INSTANCE = new NewLJUtils();
}
private NewLJUtils() {
}
public static final NewLJUtils getInstance() {
return SingletonHolder.INSTANCE;
}
}