| | |
| | | package org.yeshi.utils.entity;
|
| | |
|
| | | public class DateInfo {
|
| | |
|
| | | // 当前年
|
| | | private Integer year;
|
| | | // 当前月
|
| | | private Integer month;
|
| | | // 当前日
|
| | | private Integer day;
|
| | |
|
| | | // 当前星期几
|
| | | private String weekDay;
|
| | |
|
| | | // 农历-年
|
| | | private String lunar_year;
|
| | | // 农历-月
|
| | | private String lunar_month;
|
| | | // 农历-日
|
| | | private String lunar_day;
|
| | |
|
| | | // 天干地支-年
|
| | | private String agenary_year;
|
| | | // 天干地支-月
|
| | | private String agenary_month;
|
| | | // 天干地支-日
|
| | | private String agenary_day;
|
| | | // 天干地支-时辰
|
| | | private String agenary_hour;
|
| | | |
| | | |
| | | // 小时
|
| | | private Long hour;
|
| | | // 分钟
|
| | | private Long minute;
|
| | | // 秒数
|
| | | private Long second;
|
| | | |
| | |
|
| | | public Integer getYear() {
|
| | | return year;
|
| | | }
|
| | |
|
| | | public void setYear(Integer year) {
|
| | | this.year = year;
|
| | | }
|
| | |
|
| | | public Integer getMonth() {
|
| | | return month;
|
| | | }
|
| | |
|
| | | public void setMonth(Integer month) {
|
| | | this.month = month;
|
| | | }
|
| | |
|
| | | public Integer getDay() {
|
| | | return day;
|
| | | }
|
| | |
|
| | | public void setDay(Integer day) {
|
| | | this.day = day;
|
| | | }
|
| | |
|
| | | public String getWeekDay() {
|
| | | return weekDay;
|
| | | }
|
| | |
|
| | | public void setWeekDay(String weekDay) {
|
| | | this.weekDay = weekDay;
|
| | | }
|
| | |
|
| | | public String getLunar_year() {
|
| | | return lunar_year;
|
| | | }
|
| | |
|
| | | public void setLunar_year(String lunar_year) {
|
| | | this.lunar_year = lunar_year;
|
| | | }
|
| | |
|
| | | public String getLunar_month() {
|
| | | return lunar_month;
|
| | | }
|
| | |
|
| | | public void setLunar_month(String lunar_month) {
|
| | | this.lunar_month = lunar_month;
|
| | | }
|
| | |
|
| | | public String getLunar_day() {
|
| | | return lunar_day;
|
| | | }
|
| | |
|
| | | public void setLunar_day(String lunar_day) {
|
| | | this.lunar_day = lunar_day;
|
| | | }
|
| | |
|
| | | public String getAgenary_year() {
|
| | | return agenary_year;
|
| | | }
|
| | |
|
| | | public void setAgenary_year(String agenary_year) {
|
| | | this.agenary_year = agenary_year;
|
| | | }
|
| | |
|
| | | public String getAgenary_month() {
|
| | | return agenary_month;
|
| | | }
|
| | |
|
| | | public void setAgenary_month(String agenary_month) {
|
| | | this.agenary_month = agenary_month;
|
| | | }
|
| | |
|
| | | public String getAgenary_day() {
|
| | | return agenary_day;
|
| | | }
|
| | |
|
| | | public void setAgenary_day(String agenary_day) {
|
| | | this.agenary_day = agenary_day;
|
| | | }
|
| | |
|
| | | public String getAgenary_hour() {
|
| | | return agenary_hour;
|
| | | }
|
| | |
|
| | | public void setAgenary_hour(String agenary_hour) {
|
| | | this.agenary_hour = agenary_hour;
|
| | | }
|
| | |
|
| | | public Long getHour() {
|
| | | return hour;
|
| | | }
|
| | |
|
| | | public void setHour(Long hour) {
|
| | | this.hour = hour;
|
| | | }
|
| | |
|
| | | public Long getMinute() {
|
| | | return minute;
|
| | | }
|
| | |
|
| | | public void setMinute(Long minute) {
|
| | | this.minute = minute;
|
| | | }
|
| | |
|
| | | public Long getSecond() {
|
| | | return second;
|
| | | }
|
| | |
|
| | | public void setSecond(Long second) {
|
| | | this.second = second;
|
| | | }
|
| | | }
|
| | | package org.yeshi.utils.entity; |
| | | |
| | | public class DateInfo { |
| | | |
| | | // 当前年 |
| | | private Integer year; |
| | | // 当前月 |
| | | private Integer month; |
| | | // 当前日 |
| | | private Integer day; |
| | | |
| | | // 当前星期几 |
| | | private String weekDay; |
| | | |
| | | // 农历-年 |
| | | private String lunar_year; |
| | | // 农历-月 |
| | | private String lunar_month; |
| | | // 农历-日 |
| | | private String lunar_day; |
| | | |
| | | // 天干地支-年 |
| | | private String agenary_year; |
| | | // 天干地支-月 |
| | | private String agenary_month; |
| | | // 天干地支-日 |
| | | private String agenary_day; |
| | | // 天干地支-时辰 |
| | | private String agenary_hour; |
| | | |
| | | |
| | | // 小时 |
| | | private Long hour; |
| | | // 分钟 |
| | | private Long minute; |
| | | // 秒数 |
| | | private Long second; |
| | | |
| | | |
| | | public Integer getYear() { |
| | | return year; |
| | | } |
| | | |
| | | public void setYear(Integer year) { |
| | | this.year = year; |
| | | } |
| | | |
| | | public Integer getMonth() { |
| | | return month; |
| | | } |
| | | |
| | | public void setMonth(Integer month) { |
| | | this.month = month; |
| | | } |
| | | |
| | | public Integer getDay() { |
| | | return day; |
| | | } |
| | | |
| | | public void setDay(Integer day) { |
| | | this.day = day; |
| | | } |
| | | |
| | | public String getWeekDay() { |
| | | return weekDay; |
| | | } |
| | | |
| | | public void setWeekDay(String weekDay) { |
| | | this.weekDay = weekDay; |
| | | } |
| | | |
| | | public String getLunar_year() { |
| | | return lunar_year; |
| | | } |
| | | |
| | | public void setLunar_year(String lunar_year) { |
| | | this.lunar_year = lunar_year; |
| | | } |
| | | |
| | | public String getLunar_month() { |
| | | return lunar_month; |
| | | } |
| | | |
| | | public void setLunar_month(String lunar_month) { |
| | | this.lunar_month = lunar_month; |
| | | } |
| | | |
| | | public String getLunar_day() { |
| | | return lunar_day; |
| | | } |
| | | |
| | | public void setLunar_day(String lunar_day) { |
| | | this.lunar_day = lunar_day; |
| | | } |
| | | |
| | | public String getAgenary_year() { |
| | | return agenary_year; |
| | | } |
| | | |
| | | public void setAgenary_year(String agenary_year) { |
| | | this.agenary_year = agenary_year; |
| | | } |
| | | |
| | | public String getAgenary_month() { |
| | | return agenary_month; |
| | | } |
| | | |
| | | public void setAgenary_month(String agenary_month) { |
| | | this.agenary_month = agenary_month; |
| | | } |
| | | |
| | | public String getAgenary_day() { |
| | | return agenary_day; |
| | | } |
| | | |
| | | public void setAgenary_day(String agenary_day) { |
| | | this.agenary_day = agenary_day; |
| | | } |
| | | |
| | | public String getAgenary_hour() { |
| | | return agenary_hour; |
| | | } |
| | | |
| | | public void setAgenary_hour(String agenary_hour) { |
| | | this.agenary_hour = agenary_hour; |
| | | } |
| | | |
| | | public Long getHour() { |
| | | return hour; |
| | | } |
| | | |
| | | public void setHour(Long hour) { |
| | | this.hour = hour; |
| | | } |
| | | |
| | | public Long getMinute() { |
| | | return minute; |
| | | } |
| | | |
| | | public void setMinute(Long minute) { |
| | | this.minute = minute; |
| | | } |
| | | |
| | | public Long getSecond() { |
| | | return second; |
| | | } |
| | | |
| | | public void setSecond(Long second) { |
| | | this.second = second; |
| | | } |
| | | } |