左晓为主开发手持机充值管理机
zuoxiao
4 天以前 548dce0bcff06ee7a1795defe8e7789b9d7aad94
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.dayu.baselibrary.business;
 
/**
 * author: zuo
 * Date: 2024-08-05
 * Time: 14:15
 * 备注:
 */
public class BusinessProvider {
    public static BusinessProvider businessProvider;
    public StartLoginNavigotor startLoginNavigotor;
 
    public static BusinessProvider getInstance(StartLoginNavigotor startLoginNavigotor) {
        if (businessProvider == null) {
 
            businessProvider = new BusinessProvider();
            businessProvider.startLoginNavigotor = startLoginNavigotor;
        }
        return businessProvider;
    }
 
    public static BusinessProvider getBusinessProvider() {
        return businessProvider;
    }
 
 
}