123456789101112131415161718192021222324 |
- <?php
- namespace app\smartbc\model;
- use think\Model;
- class SmartbcStoreGroup extends Model{
- protected $autoWriteTimestamp = true;
-
-
- public function group(){
- return $this->belongsToMany('SmartbcStore','SmartbcStoreUnion','store_id','group_id');
- }
-
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
- }
|