void Awake()
 {
     if (singletonInstance)
         Debug.LogError("have singletonInstance");
     singletonInstance = this;
     getDate();
 }
 void OnDestroy()
 {
     singletonInstance = null;
 }