GoldLandFruitStatsCard.php 339 B

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