123456789101112131415161718 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\model;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class PayInfo extends Model
- {
- protected $createTime='addtime';
- protected $updateTime='updatetime';
- public function Comon(){
- return $this->belongsTo(ComonOrder::class,"cgdNo","cgdNo");
- }
- }
|