获取八字纳音 @return 八字纳音 @deprecated 使用getEightChar
()
| 1669 | * @deprecated 使用getEightChar |
| 1670 | */ |
| 1671 | @Deprecated |
| 1672 | public List<String> getBaZiNaYin() { |
| 1673 | List<String> l = new ArrayList<String>(4); |
| 1674 | EightChar eightChar = getEightChar(); |
| 1675 | l.add(eightChar.getYearNaYin()); |
| 1676 | l.add(eightChar.getMonthNaYin()); |
| 1677 | l.add(eightChar.getDayNaYin()); |
| 1678 | l.add(eightChar.getTimeNaYin()); |
| 1679 | return l; |
| 1680 | } |
| 1681 | |
| 1682 | /** |
| 1683 | * 获取八字天干十神,日柱十神为日主,其余三柱根据天干十神表查询 |
nothing calls this directly
no test coverage detected