cxgj/models/Signing.php
2024-01-17 09:58:51 +08:00

20 lines
294 B
PHP

<?php
namespace app\models;
use yii\db\ActiveRecord;
class Signing extends ActiveRecord
{
public static function tableName()
{
return '{{%signing}}';
}
public function getGoods()
{
return $this->hasOne(Goods::className(), ['id' => 'goods_id']);
}
}