From 1fab8f0f684d28ac8b996b345402b45e116eaed9 Mon Sep 17 00:00:00 2001
From: liujiandao <274878379@qq.com>
Date: 星期二, 30 四月 2024 17:30:51 +0800
Subject: [PATCH] 薪资报表查询与修改

---
 controllers/request/report_forms_request.go |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/controllers/request/report_forms_request.go b/controllers/request/report_forms_request.go
index 399ade5..b92e026 100644
--- a/controllers/request/report_forms_request.go
+++ b/controllers/request/report_forms_request.go
@@ -1,7 +1,16 @@
 package request
 
+import "github.com/shopspring/decimal"
+
 type SalaryReportForms struct {
 	PageInfo
 	Month   string `json:"month"`
 	Keyword string `json:"keyword"`
 }
+
+type UpdateSalaryReportForms struct {
+	WorkerId     string          `json:"workerId"`
+	SalaryTypeId uint            `json:"salaryTypeId"`
+	Amount       decimal.Decimal `json:"amount"`
+	Month        string          `json:"month"`
+}

--
Gitblit v1.8.0