new-admin-api/app/common/model/store/product/WithGoodsLog.php

19 lines
287 B
PHP

<?php
namespace app\common\model\store\product;
use app\common\model\BaseModel;
class WithGoodsLog extends BaseModel{
public static function tablePk(): string{
return 'id';
}
public static function tableName(): string{
return 'with_goods_log';
}
}