TaxRelation.php 235 B

1234567891011
  1. <?php
  2. namespace app\model;
  3. class TaxRelation extends Base{
  4. public function outputInfo(){
  5. return $this->belongsTo(TaxCategory::class,"output_tax_id","id")->bind(["cat_name","cat_code","short_name","merge_code"]);
  6. }
  7. }