* 摸鱼日历信息响应
| 537 | * 摸鱼日历信息响应 |
| 538 | */ |
| 539 | interface MoyuCalendar { |
| 540 | /** |
| 541 | * 日期信息 |
| 542 | */ |
| 543 | date: { |
| 544 | /** |
| 545 | * 公历日期 YYYY-MM-DD |
| 546 | */ |
| 547 | gregorian: string |
| 548 | /** |
| 549 | * 星期几(中文) |
| 550 | */ |
| 551 | weekday: string |
| 552 | /** |
| 553 | * 星期几(数字 0-6,0 为周日) |
| 554 | */ |
| 555 | dayOfWeek: number |
| 556 | /** |
| 557 | * 农历信息 |
| 558 | */ |
| 559 | lunar: { |
| 560 | /** |
| 561 | * 农历年份(数字) |
| 562 | */ |
| 563 | year: number |
| 564 | /** |
| 565 | * 农历月份(数字) |
| 566 | */ |
| 567 | month: number |
| 568 | /** |
| 569 | * 农历日期(数字) |
| 570 | */ |
| 571 | day: number |
| 572 | /** |
| 573 | * 农历年份(中文) |
| 574 | */ |
| 575 | yearCN: string |
| 576 | /** |
| 577 | * 农历月份(中文) |
| 578 | */ |
| 579 | monthCN: string |
| 580 | /** |
| 581 | * 农历日期(中文) |
| 582 | */ |
| 583 | dayCN: string |
| 584 | /** |
| 585 | * 是否闰月 |
| 586 | */ |
| 587 | isLeapMonth: boolean |
| 588 | /** |
| 589 | * 年柱(天干地支) |
| 590 | */ |
| 591 | yearGanZhi: string |
| 592 | /** |
| 593 | * 月柱(天干地支) |
| 594 | */ |
| 595 | monthGanZhi: string |
| 596 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected