admin-api/app/common/model/store/platformCommission/LegumesLog.php

21 lines
313 B
PHP

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