From f4a3813202da0450f3444bef6cbb141141302680 Mon Sep 17 00:00:00 2001
From: liujiandao <274878379@qq.com>
Date: 星期五, 19 四月 2024 16:35:28 +0800
Subject: [PATCH] 考勤导入
---
controllers/request/worker_request.go | 18 +++++++++++++++---
1 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/controllers/request/worker_request.go b/controllers/request/worker_request.go
index 3eb6fbf..1978712 100644
--- a/controllers/request/worker_request.go
+++ b/controllers/request/worker_request.go
@@ -1,16 +1,28 @@
package request
+import "silkserver/constvar"
+
type GetWorkerList struct {
PageInfo
- KeyWord string `json:"keyWord"`
+ Keyword string `json:"keyword"`
}
type GetWorkTypeList struct {
PageInfo
- KeyWord string `json:"keyWord"`
+ Keyword string `json:"keyword"`
}
type GetSalaryPlanList struct {
PageInfo
- KeyWord string `json:"keyWord"`
+ Keyword string `json:"keyword"`
+}
+
+type SalaryType struct {
+ Type constvar.MiniDictType `json:"type"` //瀛楀吀绫诲瀷,钖祫绫诲瀷:8
+ Values []SalaryTypeValue `json:"values"`
+}
+
+type SalaryTypeValue struct {
+ Name string `json:"name"` //鍚嶇О
+ IsDefault bool `json:"isDefault"` //鏄惁鍙紪杈�
}
--
Gitblit v1.8.0