12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Models;
- /**
- * 专家信息关联表
- */
- class SpecialistInfosAssociation extends SoftBaseModel
- {
- /**
- * 关联类型[1:点赞,2:喜欢]
- * @var integer
- */
- const ASSOCIATION_TYPE_THUMBS_UP = 1;
- /**
- * 关联类型[1:点赞,2:喜欢]
- * @var integer
- */
- const ASSOCIATION_TYPE_LOVE = 2;
- //操作类型[1:课堂,2:训练]
- const OPERATION_TYPE_CLASS_ROOM = 1;
- const OPERATION_TYPE_WORKOUT = 2;
- protected $table = "specialist_infos_association";
- public function specialist(){
- return $this->belongsTo(SpecialistInfo::class, 'association_id',"id");
- }
- }
|