BusinessGoal.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Modes;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Modes\BusinessGoal
  6. *
  7. * @property int $id
  8. * @property int|null $uid 会员ID
  9. * @property string $time 时间(格式20190101)
  10. * @property float $goal 目标
  11. * @property float $actual 实际
  12. * @property int $type 类型 1-月 2-年
  13. * @property \Illuminate\Support\Carbon $created_at
  14. * @property \Illuminate\Support\Carbon $updated_at
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal newModelQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal newQuery()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal query()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereActual($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereCreatedAt($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereGoal($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereId($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereTime($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereType($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereUid($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereUpdatedAt($value)
  26. * @mixin \Eloquent
  27. */
  28. class BusinessGoal extends Model
  29. {
  30. protected $table = 'business_goal';
  31. }