PayInfo.php 318 B

123456789101112131415161718
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class PayInfo extends Model
  9. {
  10. protected $createTime='addtime';
  11. protected $updateTime='updatetime';
  12. public function Comon(){
  13. return $this->belongsTo(ComonOrder::class,"cgdNo","cgdNo");
  14. }
  15. }