优惠券订单及其他脚本

conf.class.php 673B

12345678910111213141516171819202122232425
  1. <?php
  2. class conf{
  3. # 数据库
  4. public static $DB_CONF = array(
  5. 'host' => 'rm-2zeyjdfes9b313jt6.mysql.rds.aliyuncs.com',
  6. 'port' => '3306',
  7. 'dbName' => 'tbk',
  8. 'user' => 'root',
  9. 'password' => 'vetted8#hatbox'
  10. );
  11. # 佣金比例
  12. public static $RATE_CONF = array(
  13. "globalzk"=>1.0, //全局
  14. "selfSuper"=>0.5, //超 自购
  15. "selfYys"=>0.82, //运 自购
  16. "onefirstSuper"=>0.5, //超 普下购
  17. "onefirstYys"=>0.82, //运 普下购
  18. "twofirstSuper"=>0.1, //超 超下购
  19. "twofirstYys"=>0.32, //运 超下购
  20. "threesecondYys"=>0.22, //运 超下下购
  21. "YysManage" => 0.08, //运 津贴
  22. );
  23. }