12345678910111213141516171819202122232425 |
- <?php
-
- class conf{
- # 数据库
- public static $DB_CONF = array(
- 'host' => 'rm-2zeyjdfes9b313jt6.mysql.rds.aliyuncs.com',
- 'port' => '3306',
- 'dbName' => 'tbk',
- 'user' => 'root',
- 'password' => 'vetted8#hatbox'
- );
- # 佣金比例
- public static $RATE_CONF = array(
- "globalzk"=>1.0, //全局
- "selfSuper"=>0.5, //超 自购
- "selfYys"=>0.82, //运 自购
- "onefirstSuper"=>0.5, //超 普下购
- "onefirstYys"=>0.82, //运 普下购
- "twofirstSuper"=>0.1, //超 超下购
- "twofirstYys"=>0.32, //运 超下购
- "threesecondYys"=>0.22, //运 超下下购
- "YysManage" => 0.08, //运 津贴
- );
- }
|