M_ServerURL.ts 442 B

12345678910111213141516171819202122
  1. // ID:ID, URL:URL
  2. export default class M_ServerURL {
  3. private static data =
  4. {"SendCode":{"ID":"SendCode","URL":"172.21.0.17:26012"}
  5. ,"IDCard":{"ID":"IDCard","URL":"123.207.170.249:4676"}
  6. }// ID:ID, URL:URL
  7. static getData(key: any): any {
  8. if (key == null || key == undefined)
  9. return null;
  10. return this.data[key];
  11. }
  12. static getAllData(): any {
  13. return this.data;
  14. }
  15. }