Chatlog.php 183 B

123456789101112131415
  1. <?php
  2. namespace app\model\kefu;
  3. use think\Model;
  4. class Chatlog extends Model {
  5. protected $connection = 'mysql';
  6. protected $pk = 'id';
  7. protected $name = 'kefu_chat_log';
  8. }