获取八字,男性也称乾造,女性也称坤造(以立春交接时刻作为新年的开始) @return 八字(男性也称乾造,女性也称坤造) @deprecated 使用getEightChar
()
| 1635 | * @deprecated 使用getEightChar |
| 1636 | */ |
| 1637 | @Deprecated |
| 1638 | public List<String> getBaZi() { |
| 1639 | List<String> l = new ArrayList<String>(4); |
| 1640 | EightChar eightChar = getEightChar(); |
| 1641 | l.add(eightChar.getYear()); |
| 1642 | l.add(eightChar.getMonth()); |
| 1643 | l.add(eightChar.getDay()); |
| 1644 | l.add(eightChar.getTime()); |
| 1645 | return l; |
| 1646 | } |
| 1647 | |
| 1648 | /** |
| 1649 | * 获取八字五行 |