<?php /** * Created by PhpStorm. * User: hp * Date: 2017/11/21 * Time: 8:59 */ namespace App\Modules\Channel\Models; use Illuminate\Database\Eloquent\Model; use DB; class Behavior extends Model { protected $table = 'channel_behavior'; protected $fillable = ['id', 'uid','action','created_at','updated_at']; /** * ['manual','bookRecom','noticePromote','withdraw','notice' 'query', 'sumData', 'promoteNovel','randNovel','pagePromote','businessPromote','smartPush','templateMsg','clientMsg','picArtElem','miniProgram','keywordRe' 'promoteStats','pushStats','rechargeRecord','balanceCenter' 'serviceAccountSet','ClientSet','siteList'] */ public static function getAction(){ } }