|
@@ -103,6 +103,24 @@ public class ImportantDynamicServiceImpl implements IImportantDynamicService {
|
|
|
psyJo.put("title", "PSY");
|
|
|
psyJo.put("type", "psy");
|
|
|
psyJo.put("subtitle", "衡量母猪群繁殖性能力指标,一头母猪一年提供的成活仔猪数");
|
|
|
+
|
|
|
+ JSONObject avgFarrow1Jo = new JSONObject();
|
|
|
+ titleJa.add(avgFarrow1Jo);
|
|
|
+ avgFarrow1Jo.put("title", "平均窝产仔猪");
|
|
|
+ avgFarrow1Jo.put("type", "avg_farrow_1");
|
|
|
+ avgFarrow1Jo.put("subtitle", "母猪每一台生产的仔猪数量");
|
|
|
+
|
|
|
+ JSONObject griceRateJo = new JSONObject();
|
|
|
+ titleJa.add(griceRateJo);
|
|
|
+ griceRateJo.put("title", "产房成活率");
|
|
|
+ griceRateJo.put("type", "grice_rate");
|
|
|
+ griceRateJo.put("subtitle", "每一窝仔猪断奶前平均存活数量");
|
|
|
+
|
|
|
+ JSONObject pigletRateJo = new JSONObject();
|
|
|
+ titleJa.add(pigletRateJo);
|
|
|
+ pigletRateJo.put("title", "保育成活率");
|
|
|
+ pigletRateJo.put("type", "piglet_rate");
|
|
|
+ pigletRateJo.put("subtitle", "保育阶段的猪只存活率");
|
|
|
return titleJa;
|
|
|
}
|
|
|
|