NormalLandFruitStatsCard.php 347 B

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