AgentBonusRecord.php 545 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Game;
  3. use Illuminate\Database\Eloquent\Model;
  4. class AgentBonusRecord extends Model
  5. {
  6. protected $table = 'webgame.AgentBonusRecord';
  7. protected $primaryKey = 'ID';
  8. public $incrementing = true;
  9. protected $keyType = 'int';
  10. protected $connection = 'mysql';
  11. protected $fillable = [
  12. 'GlobalUID', 'UserID', 'Date', 'org_bonus', 'sub_bonus', 'bonus', 'rate', 'level', 'status', 'update_time','SubTotal'
  13. ];
  14. public $timestamps = false;
  15. const STATUS_INIT = 0;
  16. const STATUS_GET = 1;
  17. }