From 8ea408598fa6d8e351f7f40232d206854d1bd8df Mon Sep 17 00:00:00 2001 From: yinbentan <yinbentan@live.com> Date: 星期五, 02 八月 2024 16:53:30 +0800 Subject: [PATCH] 参数修改,自动任务执行规则修改 --- controllers/request/report_forms_request.go | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/controllers/request/report_forms_request.go b/controllers/request/report_forms_request.go index 6ce2f3d..b92e026 100644 --- a/controllers/request/report_forms_request.go +++ b/controllers/request/report_forms_request.go @@ -1,6 +1,16 @@ package request +import "github.com/shopspring/decimal" + type SalaryReportForms struct { PageInfo - Month string `json:"month"` + 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