|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\dao\store\platformCommission;
|
|
|
|
use app\common\dao\BaseDao;
|
|
use app\common\model\store\platformCommission\WeightValue;
|
|
|
|
class WeightValueDao extends BaseDao{
|
|
|
|
protected function getModel():string{
|
|
return WeightValue::class;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|