#10 Promotion Modul, Kommentar 2
This commit is contained in:
parent
f0da981737
commit
c9e1545693
128 changed files with 8194 additions and 637 deletions
|
|
@ -11,17 +11,27 @@ use Illuminate\Database\Eloquent\Model;
|
|||
|
||||
/**
|
||||
* Class ProductBuy
|
||||
*
|
||||
*
|
||||
* @property int $id
|
||||
* @property int $auth_user_id
|
||||
* @property int $product_id
|
||||
* @property int $num
|
||||
* @property Carbon|null $created_at
|
||||
* @property Carbon|null $updated_at
|
||||
*
|
||||
* @property Product $product
|
||||
*
|
||||
* @package App\Models
|
||||
* @property-read \App\User $auth_user
|
||||
* @property-read \App\User $user
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy whereAuthUserId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy whereNum($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy whereProductId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|ProductBuy whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class ProductBuy extends Model
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue