Browse Source

fix:交易日对象字段补充

wangzaijun 10 months ago
parent
commit
833e7674a2
1 changed files with 15 additions and 0 deletions
  1. 15 0
      src/main/java/com/smppw/common/pojo/IndexesTradeDate.java

+ 15 - 0
src/main/java/com/smppw/common/pojo/IndexesTradeDate.java

@@ -20,6 +20,11 @@ public class IndexesTradeDate {
     private String yearWeek;
 
     /**
+     * 全年的第几周
+     */
+    private Integer weekOfYear;
+
+    /**
      * 星期,周一为1
      */
     private Integer dayOfWeek;
@@ -33,4 +38,14 @@ public class IndexesTradeDate {
      * 年月
      */
     private String yearmonth;
+
+    /**
+     * 是否周最后交易日:1-是,2-否
+     */
+    private Integer isWeekend;
+
+    /**
+     * 是否月最后交易日:1-是,2-否
+     */
+    private Integer isMonthend;
 }