|
@@ -935,7 +935,7 @@ public class GanZhiServiceImpl extends ServiceImpl<GanZhiMapper, GanZhi> impleme
|
|
|
|
|
|
StringBuffer zeroCotent = new StringBuffer();
|
|
|
fiveCount.forEach((key, value) -> {
|
|
|
- if(value==0) {
|
|
|
+ if (value == 0) {
|
|
|
zeroCotent.append(shiShenConfig.getZeroFive().get(key));
|
|
|
zeroCotent.append(";");
|
|
|
}
|
|
@@ -1805,9 +1805,13 @@ public class GanZhiServiceImpl extends ServiceImpl<GanZhiMapper, GanZhi> impleme
|
|
|
caiContent.append(":");
|
|
|
|
|
|
if (caiContent.toString().contains("身强") && caiContent.toString().contains("财旺")) {
|
|
|
- caiContent.append("遇大运流年,见食伤财才则发大财。流年为" + xiYong.get(0) + "、" + xiYong.get(1) + "均带有食伤财。");
|
|
|
+ caiContent.append("遇大运流年,见食伤财才则发大财。年份为" + xiYong.get(0) + "、" + xiYong.get(1) + "均带有食伤财才。");
|
|
|
} else if (caiContent.toString().contains("身强") && caiContent.toString().contains("财弱")) {
|
|
|
- caiContent.append("遇大运流年,见食伤财才则发中财。流年为" + xiYong.get(0) + "、" + xiYong.get(1) + "均带有食伤财。");
|
|
|
+ caiContent.append("遇大运流年,见食伤财才则发中财。年份为" + xiYong.get(0) + "、" + xiYong.get(1) + "均带有食伤财才。");
|
|
|
+ } else if (caiContent.toString().contains("身弱") && caiContent.toString().contains("财旺")) {
|
|
|
+ caiContent.append("遇大运流年,见印枭比劫则发大财。年份为" + xiYong.get(0) + "、" + xiYong.get(1) + "均带有印枭比劫。");
|
|
|
+ } else if (caiContent.toString().contains("身弱") && caiContent.toString().contains("财弱")) {
|
|
|
+ caiContent.append("遇大运流年,见印枭比劫则发中财。年份为" + xiYong.get(0) + "、" + xiYong.get(1) + "均带有印枭比劫。");
|
|
|
} else if (caiContent.toString().contains("身强") && caiContent.toString().contains("四柱无财")) {
|
|
|
caiContent.append("遇大运流年,见财则有钱进账,但不长久。");
|
|
|
} else if (caiContent.toString().contains("身弱") && caiContent.toString().contains("四柱无财")) {
|
|
@@ -1818,7 +1822,7 @@ public class GanZhiServiceImpl extends ServiceImpl<GanZhiMapper, GanZhi> impleme
|
|
|
String nian = shiShenConfig.getWuGui().get(monthZhi);
|
|
|
String shengXiao = shiShenConfig.getWuGuiShengXiao().get(monthZhi);
|
|
|
|
|
|
- caiContent.append("遇到"+shengXiao+"年,遇五鬼神煞比较容易得到偏财,但是同时也较易惹上小人、是非和灾害等。五鬼煞入命,会出现莫名其妙无风起浪的危险,因此一定要防患于未然,于官府当中更应该提防,在交友方面也应该小心,否则会有刑讼官司、破财牢狱之灾。");
|
|
|
+ caiContent.append("遇到" + shengXiao + "年("+nian+"年),遇五鬼神煞比较容易得到偏财,但是同时也较易惹上小人、是非和灾害等。五鬼煞入命,会出现莫名其妙无风起浪的危险,因此一定要防患于未然,于官府当中更应该提防,在交友方面也应该小心,否则会有刑讼官司、破财牢狱之灾。");
|
|
|
|
|
|
return caiContent.toString();
|
|
|
}
|