| 12345678910111213141516171819 |
- <?php
- namespace App\Module\Farm\AdminControllers\Metrics;
- /**
- * 金土地产出果实种类统计卡片
- */
- class GoldLandFruitStatsCard extends BaseLandFruitStatsCard
- {
- /**
- * 土地类型ID
- */
- protected int $landType = 4;
- /**
- * 土地类型名称
- */
- protected string $landTypeName = '金土地';
- }
|