| | |
| | | AWS_DOMAIN = 'https://olympus.bqbot.com'; |
| | | // 新服务系统 本地环境(临时) |
| | | // AWS_DOMAIN = 'http://114.249.236.98:29990'; |
| | | // AWS_DOMAIN = 'http://114.249.231.75:29995'; |
| | | // AWS_DOMAIN = 'http://jzbase.bqbot.com:29990'; |
| | | // AWS_DOMAIN = 'http://114.249.238.243:29990'; |
| | | |
| | |
| | | return rtn; |
| | | } |
| | | |
| | | // lt 20220419 Start |
| | | /** |
| | | * @return yyyy/MM/dd の日付文字列 |
| | | */ |
| | | public static String formatDateTime2StrSprit2(DateTime dt) { |
| | | String rtn = null; |
| | | if (dt == null) { |
| | | rtn = ''; |
| | | } else { |
| | | String pDate = formatDateTime2Str(dt); |
| | | rtn = (pDate.substring(0, 4)) + '/' + |
| | | (pDate.substring(4, 6)) + '/' + |
| | | (pDate.substring(6, 8)); |
| | | } |
| | | return rtn; |
| | | } |
| | | // lt 20220419 End |
| | | |
| | | /** |
| | | * add wangweipeng 2022/02/11 |
| | | * [formatDateTime2StrDateTime description] |