1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.codingapi.tx;
|
| import com.codingapi.tx.model.TxServer;
|
| /**
| * Created by lorne on 2017/6/8.
| */
| public class Constants {
|
|
| public static volatile boolean hasExit = false;
|
| /**
| * tm 服务对象
| */
| public static TxServer txServer;
|
| }
|
|