1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace app\model;
- use support\Model;
- class MedicalSalesman extends Model
- {
- protected $table = 'medical_salesman';
- protected $primaryKey = 'salesman_id';
- protected $dateFormat = 'U';
- public const CREATED_AT = 'salesman_addTime';
- public const UPDATED_AT = 'salesman_updateTime';
- public function serializeDate(\DateTimeInterface $date)
- {
- return $date->format('Y-m-d H:i:s');
- }
- public function shop()
- {
- return $this->hasOne(MedicalShop::class,'shop_id','salesman_shop_id');
- }
-
- public function phoneExist($phone)
- {
- return self::where('salesman_phone', $phone)->exists();
- }
-
- public function usernameExist($username)
- {
- return self::where('salesman_username', $username)->exists();
- }
-
- public function phoneIsInOtherAccountExist($phone, $id)
- {
- return self::where('salesman_phone', $phone)
- ->where('salesman_id', '<>', $id)
- ->exists();
- }
-
- public function usernameIsInOtherAccountExist($username, $id)
- {
- return self::where('salesman_username', $username)
- ->where('salesman_id', '<>', $id)
- ->exists();
- }
- }
|