12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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 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();
- }
- }
|