From 9b17ac4dc5670a0468780b4219520f87a2131de1 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期二, 23 四月 2024 14:31:05 +0800 Subject: [PATCH] 增加字段 --- docs/docs.go | 582 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 580 insertions(+), 2 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index fa943c2..5a49f1f 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -124,6 +124,120 @@ } } }, + "/api-jl/v1/attendance/getAttendanceRule": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "鑰冨嫟绠$悊" + ], + "summary": "鑾峰彇鍔犵彮瑙勫垯", + "parameters": [ + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "$ref": "#/definitions/util.Response" + } + } + } + } + }, + "/api-jl/v1/attendance/getAttendanceStatistic": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鑰冨嫟绠$悊" + ], + "summary": "鑾峰彇鑰冨嫟缁熻", + "parameters": [ + { + "description": "鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.GetAttendanceStatistic" + } + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "allOf": [ + { + "$ref": "#/definitions/util.Response" + }, + { + "type": "object", + "properties": { + "data": { + "$ref": "#/definitions/response.AttendanceList" + } + } + } + ] + } + } + } + } + }, + "/api-jl/v1/attendance/saveAttendanceRule": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鑰冨嫟绠$悊" + ], + "summary": "淇濆瓨鍔犵彮瑙勫垯", + "parameters": [ + { + "description": "鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/models.AttendanceRule" + } + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "$ref": "#/definitions/util.Response" + } + } + } + } + }, "/api-jl/v1/fineness/changeYieldRegister": { "post": { "produces": [ @@ -1475,7 +1589,7 @@ } }, "/api-jl/v1/system/getWorkshopManageList": { - "get": { + "post": { "produces": [ "application/json" ], @@ -1915,9 +2029,191 @@ } } } + }, + "/api-jl/v1/workerPosition/createWorkerPositionInfo": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鏈哄彴绠$悊" + ], + "summary": "鍒涘缓鏈哄彴淇℃伅", + "parameters": [ + { + "description": "鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.AddWorkPositionRequest" + } + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "$ref": "#/definitions/util.Response" + } + } + } + } + }, + "/api-jl/v1/workerPosition/deleteWorkerPositionInfo/{id}": { + "delete": { + "produces": [ + "application/json" + ], + "tags": [ + "鏈哄彴绠$悊" + ], + "summary": "鍒犻櫎鏈哄彴淇℃伅", + "parameters": [ + { + "type": "string", + "description": "id", + "name": "id", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "$ref": "#/definitions/util.Response" + } + } + } + } + }, + "/api-jl/v1/workerPosition/getWorkerPositionList": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鏈哄彴绠$悊" + ], + "summary": "鑾峰彇鏈哄彴淇℃伅鍒楄〃", + "parameters": [ + { + "description": "鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.GetWorkerPositionList" + } + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "allOf": [ + { + "$ref": "#/definitions/util.ResponseList" + }, + { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "$ref": "#/definitions/models.WorkerPosition" + } + } + } + } + ] + } + } + } + } + }, + "/api-jl/v1/workerPosition/updateWorkerPositionInfo": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鏈哄彴绠$悊" + ], + "summary": "鏇存柊鏈哄彴淇℃伅", + "parameters": [ + { + "description": "鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.UpdateWorkerPositionRequest" + } + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "$ref": "#/definitions/util.Response" + } + } + } + } } }, "definitions": { + "constvar.AttendanceStatus": { + "type": "integer", + "enum": [ + 1, + 2, + 3, + 4 + ], + "x-enum-comments": { + "Abnormal": "寮傚父", + "Normal": "姝e父", + "Overtime": "鍔犵彮", + "Vacation": "浼戝亣" + }, + "x-enum-varnames": [ + "Normal", + "Overtime", + "Vacation", + "Abnormal" + ] + }, "constvar.CarFlag": { "type": "integer", "enum": [ @@ -2080,17 +2376,58 @@ "id": { "type": "integer" }, + "overTimeDuration": { + "type": "number" + }, "startWorkTime": { "type": "string" }, + "status": { + "$ref": "#/definitions/constvar.AttendanceStatus" + }, "updatedAt": { "type": "string" + }, + "workType": { + "$ref": "#/definitions/models.WorkTypeManage" + }, + "workTypeId": { + "type": "integer" }, "workerId": { "type": "string" }, "workerName": { "type": "string" + } + } + }, + "models.AttendanceRule": { + "type": "object", + "properties": { + "createdAt": { + "type": "string" + }, + "deletedAt": { + "$ref": "#/definitions/gorm.DeletedAt" + }, + "id": { + "type": "integer" + }, + "overTimeStart": { + "type": "number" + }, + "restDayRule": { + "type": "integer" + }, + "restDayStart": { + "type": "number" + }, + "updatedAt": { + "type": "string" + }, + "weekdayRule": { + "type": "integer" } } }, @@ -2409,7 +2746,7 @@ "type": "string" }, "worker": { - "description": "宸ヤ汉ID", + "description": "宸ヤ汉", "allOf": [ { "$ref": "#/definitions/models.Worker" @@ -2590,6 +2927,62 @@ "type": "string" }, "workTypeId": { + "type": "integer" + } + } + }, + "models.WorkerPosition": { + "type": "object", + "properties": { + "createdAt": { + "type": "string" + }, + "creator": { + "type": "string" + }, + "deletedAt": { + "$ref": "#/definitions/gorm.DeletedAt" + }, + "endDate": { + "description": "缁撴潫鏃ユ湡", + "type": "string" + }, + "endWorkerPosition": { + "description": "缁撴潫杞﹀彿", + "type": "integer" + }, + "id": { + "type": "integer" + }, + "name": { + "description": "杞﹂棿", + "type": "string" + }, + "startDate": { + "description": "寮�濮嬫棩鏈�", + "type": "string" + }, + "startWorkerPosition": { + "description": "寮�濮嬭溅鍙�", + "type": "integer" + }, + "updatedAt": { + "type": "string" + }, + "worker": { + "description": "宸ヤ汉", + "allOf": [ + { + "$ref": "#/definitions/models.Worker" + } + ] + }, + "workerId": { + "description": "宸ヤ汉ID", + "type": "string" + }, + "workshopGroup": { + "description": "杞︾粍", "type": "integer" } } @@ -2931,6 +3324,48 @@ } } }, + "request.AddWorkPositionRequest": { + "type": "object", + "required": [ + "endDate", + "endWorkerPosition", + "startDate", + "startWorkerPosition", + "workerId", + "workshop", + "workshopGroup" + ], + "properties": { + "endDate": { + "description": "缁撴潫鏃ユ湡", + "type": "string" + }, + "endWorkerPosition": { + "description": "缁撴潫杞﹀彿", + "type": "integer" + }, + "startDate": { + "description": "寮�濮嬫棩鏈�", + "type": "string" + }, + "startWorkerPosition": { + "description": "寮�濮嬭溅鍙�", + "type": "integer" + }, + "workerId": { + "description": "宸ヤ汉ID", + "type": "string" + }, + "workshop": { + "description": "杞﹂棿", + "type": "string" + }, + "workshopGroup": { + "description": "杞︾粍", + "type": "integer" + } + } + }, "request.ChangeYieldRegister": { "type": "object", "properties": { @@ -2960,6 +3395,7 @@ "type": "object", "properties": { "ids": { + "description": "璁板綍id", "type": "array", "items": { "type": "integer" @@ -3021,6 +3457,15 @@ } } }, + "request.GetAttendanceStatistic": { + "type": "object", + "properties": { + "month": { + "description": "鏈堜唤", + "type": "string" + } + } + }, "request.GetMentorList": { "type": "object", "properties": { @@ -3070,6 +3515,22 @@ } }, "request.GetWorkerList": { + "type": "object", + "properties": { + "keyword": { + "type": "string" + }, + "page": { + "description": "椤电爜", + "type": "integer" + }, + "pageSize": { + "description": "姣忛〉澶у皬", + "type": "integer" + } + } + }, + "request.GetWorkerPositionList": { "type": "object", "properties": { "keyword": { @@ -3267,6 +3728,51 @@ } } }, + "request.UpdateWorkerPositionRequest": { + "type": "object", + "required": [ + "endDate", + "endWorkerPosition", + "startDate", + "startWorkerPosition", + "workerId", + "workshop", + "workshopGroup" + ], + "properties": { + "endDate": { + "description": "缁撴潫鏃ユ湡", + "type": "string" + }, + "endWorkerPosition": { + "description": "缁撴潫杞﹀彿", + "type": "integer" + }, + "id": { + "type": "integer" + }, + "startDate": { + "description": "寮�濮嬫棩鏈�", + "type": "string" + }, + "startWorkerPosition": { + "description": "寮�濮嬭溅鍙�", + "type": "integer" + }, + "workerId": { + "description": "宸ヤ汉ID", + "type": "string" + }, + "workshop": { + "description": "杞﹂棿", + "type": "string" + }, + "workshopGroup": { + "description": "杞︾粍", + "type": "integer" + } + } + }, "request.YieldRegisterCircleInfo": { "type": "object", "properties": { @@ -3464,6 +3970,78 @@ } } }, + "response.AttendanceDetail": { + "type": "object", + "properties": { + "date": { + "description": "鏃ユ湡", + "type": "integer" + }, + "status": { + "description": "鐘舵��", + "allOf": [ + { + "$ref": "#/definitions/constvar.AttendanceStatus" + } + ] + } + } + }, + "response.AttendanceList": { + "type": "object", + "properties": { + "list": { + "type": "array", + "items": { + "$ref": "#/definitions/response.AttendanceStatistic" + } + } + } + }, + "response.AttendanceStatistic": { + "type": "object", + "properties": { + "actualAttendanceDays": { + "description": "瀹為檯鍑哄嫟澶╂暟", + "type": "integer" + }, + "details": { + "description": "璇︽儏", + "type": "array", + "items": { + "$ref": "#/definitions/response.AttendanceDetail" + } + }, + "month": { + "description": "鏈堜唤", + "type": "string" + }, + "requiredAttendanceDays": { + "description": "搴斿嚭鍕ゅぉ鏁�", + "type": "integer" + }, + "restDayOverTime": { + "description": "浼戞伅鏃ュ姞鐝椂闀�", + "type": "number" + }, + "weekdayOverTime": { + "description": "宸ヤ綔鏃ュ姞鐝椂闀�", + "type": "number" + }, + "workType": { + "description": "宸ョ", + "type": "string" + }, + "workerId": { + "description": "浜哄憳id", + "type": "string" + }, + "workerName": { + "description": "浜哄憳濮撳悕", + "type": "string" + } + } + }, "response.CarAndLevel": { "type": "object", "properties": { -- Gitblit v1.8.0