From 816df6ec0a43ef777e0d4cd0daff61f870626d83 Mon Sep 17 00:00:00 2001
From: baoshiwei <baoshiwei@shlanbao.cn>
Date: 星期四, 05 六月 2025 13:53:12 +0800
Subject: [PATCH] feat(system): 添加节假日管理功能- 新增 SysHolidayController、SysHoliday、SysHolidayMapper、SysHolidayServiceImpl 和 ISysHolidayService 类- 实现节假日信息的增删改查和导出功能 - 添加工作日判断方法 - 新增相关 API 接口

---
 zhitan-system/src/main/java/com/zhitan/peakvalley/domain/ElectricityPriceDate.java |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/zhitan-system/src/main/java/com/zhitan/peakvalley/domain/ElectricityPriceDate.java b/zhitan-system/src/main/java/com/zhitan/peakvalley/domain/ElectricityPriceDate.java
index 05262a3..2add55e 100644
--- a/zhitan-system/src/main/java/com/zhitan/peakvalley/domain/ElectricityPriceDate.java
+++ b/zhitan-system/src/main/java/com/zhitan/peakvalley/domain/ElectricityPriceDate.java
@@ -32,6 +32,57 @@
     @Excel(name = "缁撴潫鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd")
     private Date endDate;
 
+    private String remark;
+
+
+//    /** 鏄惁闃舵浠锋牸0鍚�1鏄� */
+//    @Excel(name = "鏄惁闃舵浠锋牸0鍚�1鏄�")
+//    private String type;
+//
+//    /** 绛栫暐缂栫爜 */
+//    @Excel(name = "绛栫暐缂栫爜")
+//    private String tacticsNumber;
+//
+//    /** 绛栫暐鍚嶇О */
+//    @Excel(name = "绛栫暐鍚嶇О")
+//    private String tacticsName;
+//
+//    /** 鑳芥簮鍝佺 */
+//    @Excel(name = "鑳芥簮鍝佺")
+//    private Integer energyType;
+
+//    public void setType(String type) {
+//        this.type = type;
+//    }
+//
+//    public void setTacticsNumber(String tacticsNumber) {
+//        this.tacticsNumber = tacticsNumber;
+//    }
+//
+//    public void setTacticsName(String tacticsName) {
+//        this.tacticsName = tacticsName;
+//    }
+//
+//    public void setEnergyType(Integer energyType) {
+//        this.energyType = energyType;
+//    }
+//
+//    public String getType() {
+//        return type;
+//    }
+//
+//    public String getTacticsNumber() {
+//        return tacticsNumber;
+//    }
+//
+//    public String getTacticsName() {
+//        return tacticsName;
+//    }
+//
+//    public Integer getEnergyType() {
+//        return energyType;
+//    }
+
     public void setId(String id)
     {
         this.id = id;
@@ -73,4 +124,14 @@
             .append("remark", getRemark())
         .toString();
     }
+
+    @Override
+    public String getRemark() {
+        return remark;
+    }
+
+    @Override
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
 }

--
Gitblit v1.9.3