CgdCaixiao.php 283 B

12345678910111213141516
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class CgdCaixiao extends Model
  9. {
  10. public function OriginCgd(){
  11. return $this->belongsTo(OriginCgd::class,"cgdNo","newCode")->bind(["mainCode"=>"oldCode"]);
  12. }
  13. }