| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Modes;
- use Illuminate\Database\Eloquent\Model;
- /**
- * App\Modes\BusinessGoal
- *
- * @property int $id
- * @property int|null $uid 会员ID
- * @property string $time 时间(格式20190101)
- * @property float $goal 目标
- * @property float $actual 实际
- * @property int $type 类型 1-月 2-年
- * @property \Illuminate\Support\Carbon $created_at
- * @property \Illuminate\Support\Carbon $updated_at
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereActual($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereGoal($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereTime($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereType($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereUid($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\BusinessGoal whereUpdatedAt($value)
- * @mixin \Eloquent
- */
- class BusinessGoal extends Model
- {
- protected $table = 'business_goal';
- }
|