ProductConfig.php 320 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\common\model;
  4. use app\common\model\base\BaseModel;
  5. class ProductConfig extends BaseModel
  6. {
  7. //获取规格重量
  8. public static function getWeight(int $id): float|string|null
  9. {
  10. return self::where('id', $id)->value('weight');
  11. }
  12. }