12345678910111213141516171819202122 |
- <?php
-
- /**
- * Created by PhpStorm.
- * User: guanxl
- * Date: 2018/3/19
- * Time: 18:43
- */
- namespace App\Models;
-
- use Illuminate\Database\Eloquent\Model;
-
- class KnowledgeMoneyRecord extends Model
- {
- protected $table = "bs_knowledge_money_records";
- protected $primaryKey = "id";
-
- protected $dateFormat = 'U';
- const CREATED_AT = "create_time";
-
- public $fillable=["corp_id","activity_id","user_id","get_mode","mode_id","money"];
- }
|