19 lines
325 B
PHP
19 lines
325 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use ba\Random;
|
|
use think\Model;
|
|
|
|
/**
|
|
* 错误日志
|
|
*/
|
|
class RabbitMqConfig extends Model
|
|
{
|
|
public static $host = '121.40.109.122';
|
|
public static $port = '5672';
|
|
public static $user = 'chaozg';
|
|
public static $password = 'chaozg123';
|
|
|
|
public static $queue_t = 'dev';
|
|
} |