RedLandFruitStatsCard.php 338 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Module\Farm\AdminControllers\Metrics;
  3. /**
  4. * 红土地产出果实种类统计卡片
  5. */
  6. class RedLandFruitStatsCard extends BaseLandFruitStatsCard
  7. {
  8. /**
  9. * 土地类型ID
  10. */
  11. protected int $landType = 2;
  12. /**
  13. * 土地类型名称
  14. */
  15. protected string $landTypeName = '红土地';
  16. }