| | |
| | | package request |
| | | |
| | | import "silkserver/constvar" |
| | | |
| | | type GetWorkerList struct { |
| | | PageInfo |
| | | KeyWord string `json:"keyWord"` |
| | |
| | | PageInfo |
| | | 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"` //是否可编辑 |
| | | } |
| | |
| | | |
| | | import ( |
| | | "github.com/gin-gonic/gin" |
| | | "gorm.io/gorm" |
| | | "silkserver/constvar" |
| | | "silkserver/controllers/request" |
| | | "silkserver/extend/code" |
| | | "silkserver/extend/util" |
| | |
| | | // @Tags 员工薪资/薪酬方案 |
| | | // @Summary 保存薪酬方案 |
| | | // @Produce application/json |
| | | // @Param object body models.SaveSalaryPlan true "参数" |
| | | // @Param object body models.SalaryPlan true "参数" |
| | | // @Param Authorization header string true "token" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-jl/v1/salary/saveSalaryPlan [post] |
| | |
| | | } |
| | | util.ResponseFormat(c, code.Success, "删除成功") |
| | | } |
| | | |
| | | // SaveSalaryType |
| | | // |
| | | // @Tags 员工薪资/薪酬方案 |
| | | // @Summary 保存薪资类型 |
| | | // @Produce application/json |
| | | // @Param object body request.SalaryType true "参数" |
| | | // @Param Authorization header string true "token" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-jl/v1/salary/saveSalaryType [post] |
| | | func (slf SalaryPlanController) SaveSalaryType(c *gin.Context) { |
| | | var params request.SalaryType |
| | | err := c.BindJSON(¶ms) |
| | | if err != nil { |
| | | util.ResponseFormat(c, code.RequestParamError, "参数解析失败,数据类型错误") |
| | | return |
| | | } |
| | | if params.Type == 0 { |
| | | util.ResponseFormat(c, code.RequestParamError, "类型不能为空") |
| | | return |
| | | } |
| | | types := make([]*models.MiniDict, 0) |
| | | for _, value := range params.Values { |
| | | var dict models.MiniDict |
| | | dict.Name = value.Name |
| | | dict.IsDefault = value.IsDefault |
| | | dict.Type = params.Type |
| | | types = append(types, &dict) |
| | | } |
| | | err = models.WithTransaction(func(db *gorm.DB) error { |
| | | err = models.NewMiniDictSearch().SetOrm(db).SetType(params.Type).Delete() |
| | | if err != nil { |
| | | return err |
| | | } |
| | | err = models.NewMiniDictSearch().SetOrm(db).CreateBatch(types) |
| | | if err != nil { |
| | | return err |
| | | } |
| | | return nil |
| | | }) |
| | | if err != nil { |
| | | util.ResponseFormat(c, code.RequestParamError, "保存失败") |
| | | return |
| | | } |
| | | util.ResponseFormat(c, code.Success, "保存成功") |
| | | } |
| | | |
| | | // GetSalaryTypeList |
| | | // |
| | | // @Tags 员工薪资/薪酬方案 |
| | | // @Summary 获取薪资类型列表 |
| | | // @Produce application/json |
| | | // @Param number path string true "type" "参数" |
| | | // @Param Authorization header string true "token" |
| | | // @Success 200 {object} util.ResponseList{data=[]models.MiniDict} "成功" |
| | | // @Router /api-jl/v1/salary/getSalaryTypeList/{type} [get] |
| | | func (slf SalaryPlanController) GetSalaryTypeList(c *gin.Context) { |
| | | tp := c.Param("type") |
| | | if tp == "" { |
| | | util.ResponseFormat(c, code.RequestParamError, "无效的类型") |
| | | return |
| | | } |
| | | atoi, _ := strconv.Atoi(tp) |
| | | if atoi == 0 { |
| | | util.ResponseFormat(c, code.RequestParamError, "无效的类型") |
| | | return |
| | | } |
| | | dicts, err := models.NewMiniDictSearch().SetType(constvar.MiniDictType(atoi)).FindNotTotal() |
| | | if err != nil { |
| | | util.ResponseFormat(c, code.RequestParamError, "查询失败") |
| | | return |
| | | } |
| | | util.ResponseFormat(c, code.Success, dicts) |
| | | } |
| | |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/deleteSalaryPlanInfo/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "删除薪酬方案", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "number", |
| | | "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/salary/getSalaryPlanList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "获取薪酬方案列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetSalaryPlanList" |
| | | } |
| | | }, |
| | | { |
| | | "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.SalaryPlan" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/getSalaryTypeList/{type}": { |
| | | "get": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "获取薪资类型列表", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "type", |
| | | "name": "number", |
| | | "in": "path", |
| | | "required": true |
| | | }, |
| | | { |
| | | "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.MiniDict" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/saveSalaryPlan": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "保存薪酬方案", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.SalaryPlan" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/saveSalaryType": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "保存薪资类型", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.SalaryType" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/system/deletePriceStandard/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/createWorkerInfo": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "创建人员信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.Worker" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/deleteWorkTypeInfo/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/工种信息" |
| | | ], |
| | | "summary": "删除工种信息", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "number", |
| | | "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/worker/deleteWorkerInfo/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "删除人员信息", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "number", |
| | | "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/worker/getWorkTypeList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/工种信息" |
| | | ], |
| | | "summary": "获取工种列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetWorkTypeList" |
| | | } |
| | | }, |
| | | { |
| | | "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.WorkTypeManage" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/getWorkerList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "获取人员信息列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetWorkerList" |
| | | } |
| | | }, |
| | | { |
| | | "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.Worker" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/saveWorkTypeInfo": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/工种信息" |
| | | ], |
| | | "summary": "保存工种信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.WorkTypeManage" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/updateWorkerInfo": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "更新人员信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.Worker" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "definitions": { |
| | |
| | | "DictTypeWorkshop", |
| | | "DictTypeColor", |
| | | "DictTypeSpec" |
| | | ] |
| | | }, |
| | | "constvar.MiniDictType": { |
| | | "type": "integer", |
| | | "enum": [ |
| | | 1, |
| | | 2, |
| | | 3, |
| | | 4, |
| | | 5, |
| | | 6, |
| | | 7, |
| | | 8 |
| | | ], |
| | | "x-enum-comments": { |
| | | "EarlyWarningDay": "预警天数", |
| | | "InspectionWayType": "质检方式类型", |
| | | "MiniDictTypeBomVersionType": "Bom版本类型", |
| | | "MiniDictTypePlcBrand": "PLC品牌", |
| | | "OutsourcingSupplierCreditGrade": "信用等级", |
| | | "OutsourcingSupplierRange": "供货范围", |
| | | "OutsourcingSupplierType": "委外供应商类型", |
| | | "SalaryType": "嘉联薪资类型" |
| | | }, |
| | | "x-enum-varnames": [ |
| | | "MiniDictTypePlcBrand", |
| | | "MiniDictTypeBomVersionType", |
| | | "EarlyWarningDay", |
| | | "InspectionWayType", |
| | | "OutsourcingSupplierType", |
| | | "OutsourcingSupplierCreditGrade", |
| | | "OutsourcingSupplierRange", |
| | | "SalaryType" |
| | | ] |
| | | }, |
| | | "constvar.WorkerStatus": { |
| | | "type": "integer", |
| | | "enum": [ |
| | | 1, |
| | | 2, |
| | | 3, |
| | | 4 |
| | | ], |
| | | "x-enum-comments": { |
| | | "WorkerStatusHoliday": "请假", |
| | | "WorkerStatusOvertime": "加班", |
| | | "WorkerStatusRest": "休息", |
| | | "WorkerStatusWorking": "在班" |
| | | }, |
| | | "x-enum-varnames": [ |
| | | "WorkerStatusWorking", |
| | | "WorkerStatusRest", |
| | | "WorkerStatusHoliday", |
| | | "WorkerStatusOvertime" |
| | | ] |
| | | }, |
| | | "gorm.DeletedAt": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "models.MiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "isDefault": { |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | }, |
| | | "value": { |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.RawSilkPriceStandard": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | }, |
| | | "updatedAt": { |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.SalaryPlan": { |
| | | "type": "object", |
| | | "properties": { |
| | | "addPeople": { |
| | | "type": "string" |
| | | }, |
| | | "createTime": { |
| | | "type": "string" |
| | | }, |
| | | "createdAt": { |
| | | "type": "string" |
| | | }, |
| | | "cycle": { |
| | | "type": "string" |
| | | }, |
| | | "deletedAt": { |
| | | "$ref": "#/definitions/gorm.DeletedAt" |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "name": { |
| | | "type": "string" |
| | | }, |
| | | "salaryFormula": { |
| | | "type": "string" |
| | | }, |
| | | "salaryType": { |
| | | "type": "string" |
| | | }, |
| | | "updatedAt": { |
| | | "type": "string" |
| | | }, |
| | | "workTypes": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.WorkTypeManage" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "models.WorkTypeManage": { |
| | | "type": "object", |
| | | "properties": { |
| | | "addPeople": { |
| | | "type": "string" |
| | | }, |
| | | "createTime": { |
| | | "type": "string" |
| | | }, |
| | | "createdAt": { |
| | | "type": "string" |
| | | }, |
| | | "deletedAt": { |
| | | "$ref": "#/definitions/gorm.DeletedAt" |
| | | }, |
| | | "guaranteedWages": { |
| | | "type": "number" |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "isGuaranteed": { |
| | | "type": "boolean" |
| | | }, |
| | | "salaryPlans": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.SalaryPlan" |
| | | } |
| | | }, |
| | | "updatedAt": { |
| | | "type": "string" |
| | | }, |
| | | "workName": { |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.Worker": { |
| | | "type": "object", |
| | | "properties": { |
| | | "addPeople": { |
| | | "type": "string" |
| | | }, |
| | | "employmentTime": { |
| | | "type": "string" |
| | | }, |
| | | "groupNumber": { |
| | | "type": "integer" |
| | | }, |
| | | "id": { |
| | | "type": "string" |
| | | }, |
| | | "name": { |
| | | "type": "string" |
| | | }, |
| | | "phoneNum": { |
| | | "type": "string" |
| | | }, |
| | | "shopId": { |
| | | "type": "string" |
| | | }, |
| | | "shopName": { |
| | | "type": "string" |
| | | }, |
| | | "status": { |
| | | "$ref": "#/definitions/constvar.WorkerStatus" |
| | | }, |
| | | "workType": { |
| | | "type": "string" |
| | | }, |
| | | "workTypeId": { |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.GetSalaryPlanList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "keyWord": { |
| | | "type": "string" |
| | | }, |
| | | "page": { |
| | | "description": "页码", |
| | | "type": "integer" |
| | | }, |
| | | "pageSize": { |
| | | "description": "每页大小", |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | | "request.GetWorkTypeList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "keyWord": { |
| | | "type": "string" |
| | | }, |
| | | "page": { |
| | | "description": "页码", |
| | | "type": "integer" |
| | | }, |
| | | "pageSize": { |
| | | "description": "每页大小", |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | | "request.GetWorkerList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "keyWord": { |
| | | "type": "string" |
| | | }, |
| | | "page": { |
| | | "description": "页码", |
| | | "type": "integer" |
| | | }, |
| | | "pageSize": { |
| | | "description": "每页大小", |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | | "request.GetWorkshopManageCar": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | "type": "integer" |
| | | }, |
| | | "marketName": { |
| | | "description": "/庄口名", |
| | | "description": "庄口名", |
| | | "type": "string" |
| | | }, |
| | | "workshopName": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.SalaryType": { |
| | | "type": "object", |
| | | "properties": { |
| | | "type": { |
| | | "description": "字典类型,薪资类型:8", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "values": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/request.SalaryTypeValue" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "request.SalaryTypeValue": { |
| | | "type": "object", |
| | | "properties": { |
| | | "isDefault": { |
| | | "description": "是否可编辑", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.SaveRankStandard": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/deleteSalaryPlanInfo/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "删除薪酬方案", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "number", |
| | | "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/salary/getSalaryPlanList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "获取薪酬方案列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetSalaryPlanList" |
| | | } |
| | | }, |
| | | { |
| | | "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.SalaryPlan" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/getSalaryTypeList/{type}": { |
| | | "get": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "获取薪资类型列表", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "type", |
| | | "name": "number", |
| | | "in": "path", |
| | | "required": true |
| | | }, |
| | | { |
| | | "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.MiniDict" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/saveSalaryPlan": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "保存薪酬方案", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.SalaryPlan" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/salary/saveSalaryType": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工薪资/薪酬方案" |
| | | ], |
| | | "summary": "保存薪资类型", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.SalaryType" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/system/deletePriceStandard/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/createWorkerInfo": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "创建人员信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.Worker" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/deleteWorkTypeInfo/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/工种信息" |
| | | ], |
| | | "summary": "删除工种信息", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "number", |
| | | "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/worker/deleteWorkerInfo/{id}": { |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "删除人员信息", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "number", |
| | | "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/worker/getWorkTypeList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/工种信息" |
| | | ], |
| | | "summary": "获取工种列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetWorkTypeList" |
| | | } |
| | | }, |
| | | { |
| | | "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.WorkTypeManage" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/getWorkerList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "获取人员信息列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetWorkerList" |
| | | } |
| | | }, |
| | | { |
| | | "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.Worker" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/saveWorkTypeInfo": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/工种信息" |
| | | ], |
| | | "summary": "保存工种信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.WorkTypeManage" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-jl/v1/worker/updateWorkerInfo": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "员工管理/员工信息" |
| | | ], |
| | | "summary": "更新人员信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/models.Worker" |
| | | } |
| | | }, |
| | | { |
| | | "type": "string", |
| | | "description": "token", |
| | | "name": "Authorization", |
| | | "in": "header", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "definitions": { |
| | |
| | | "DictTypeWorkshop", |
| | | "DictTypeColor", |
| | | "DictTypeSpec" |
| | | ] |
| | | }, |
| | | "constvar.MiniDictType": { |
| | | "type": "integer", |
| | | "enum": [ |
| | | 1, |
| | | 2, |
| | | 3, |
| | | 4, |
| | | 5, |
| | | 6, |
| | | 7, |
| | | 8 |
| | | ], |
| | | "x-enum-comments": { |
| | | "EarlyWarningDay": "预警天数", |
| | | "InspectionWayType": "质检方式类型", |
| | | "MiniDictTypeBomVersionType": "Bom版本类型", |
| | | "MiniDictTypePlcBrand": "PLC品牌", |
| | | "OutsourcingSupplierCreditGrade": "信用等级", |
| | | "OutsourcingSupplierRange": "供货范围", |
| | | "OutsourcingSupplierType": "委外供应商类型", |
| | | "SalaryType": "嘉联薪资类型" |
| | | }, |
| | | "x-enum-varnames": [ |
| | | "MiniDictTypePlcBrand", |
| | | "MiniDictTypeBomVersionType", |
| | | "EarlyWarningDay", |
| | | "InspectionWayType", |
| | | "OutsourcingSupplierType", |
| | | "OutsourcingSupplierCreditGrade", |
| | | "OutsourcingSupplierRange", |
| | | "SalaryType" |
| | | ] |
| | | }, |
| | | "constvar.WorkerStatus": { |
| | | "type": "integer", |
| | | "enum": [ |
| | | 1, |
| | | 2, |
| | | 3, |
| | | 4 |
| | | ], |
| | | "x-enum-comments": { |
| | | "WorkerStatusHoliday": "请假", |
| | | "WorkerStatusOvertime": "加班", |
| | | "WorkerStatusRest": "休息", |
| | | "WorkerStatusWorking": "在班" |
| | | }, |
| | | "x-enum-varnames": [ |
| | | "WorkerStatusWorking", |
| | | "WorkerStatusRest", |
| | | "WorkerStatusHoliday", |
| | | "WorkerStatusOvertime" |
| | | ] |
| | | }, |
| | | "gorm.DeletedAt": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "models.MiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "isDefault": { |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | }, |
| | | "value": { |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.RawSilkPriceStandard": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | }, |
| | | "updatedAt": { |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.SalaryPlan": { |
| | | "type": "object", |
| | | "properties": { |
| | | "addPeople": { |
| | | "type": "string" |
| | | }, |
| | | "createTime": { |
| | | "type": "string" |
| | | }, |
| | | "createdAt": { |
| | | "type": "string" |
| | | }, |
| | | "cycle": { |
| | | "type": "string" |
| | | }, |
| | | "deletedAt": { |
| | | "$ref": "#/definitions/gorm.DeletedAt" |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "name": { |
| | | "type": "string" |
| | | }, |
| | | "salaryFormula": { |
| | | "type": "string" |
| | | }, |
| | | "salaryType": { |
| | | "type": "string" |
| | | }, |
| | | "updatedAt": { |
| | | "type": "string" |
| | | }, |
| | | "workTypes": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.WorkTypeManage" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "models.WorkTypeManage": { |
| | | "type": "object", |
| | | "properties": { |
| | | "addPeople": { |
| | | "type": "string" |
| | | }, |
| | | "createTime": { |
| | | "type": "string" |
| | | }, |
| | | "createdAt": { |
| | | "type": "string" |
| | | }, |
| | | "deletedAt": { |
| | | "$ref": "#/definitions/gorm.DeletedAt" |
| | | }, |
| | | "guaranteedWages": { |
| | | "type": "number" |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "isGuaranteed": { |
| | | "type": "boolean" |
| | | }, |
| | | "salaryPlans": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.SalaryPlan" |
| | | } |
| | | }, |
| | | "updatedAt": { |
| | | "type": "string" |
| | | }, |
| | | "workName": { |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.Worker": { |
| | | "type": "object", |
| | | "properties": { |
| | | "addPeople": { |
| | | "type": "string" |
| | | }, |
| | | "employmentTime": { |
| | | "type": "string" |
| | | }, |
| | | "groupNumber": { |
| | | "type": "integer" |
| | | }, |
| | | "id": { |
| | | "type": "string" |
| | | }, |
| | | "name": { |
| | | "type": "string" |
| | | }, |
| | | "phoneNum": { |
| | | "type": "string" |
| | | }, |
| | | "shopId": { |
| | | "type": "string" |
| | | }, |
| | | "shopName": { |
| | | "type": "string" |
| | | }, |
| | | "status": { |
| | | "$ref": "#/definitions/constvar.WorkerStatus" |
| | | }, |
| | | "workType": { |
| | | "type": "string" |
| | | }, |
| | | "workTypeId": { |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.GetSalaryPlanList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "keyWord": { |
| | | "type": "string" |
| | | }, |
| | | "page": { |
| | | "description": "页码", |
| | | "type": "integer" |
| | | }, |
| | | "pageSize": { |
| | | "description": "每页大小", |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | | "request.GetWorkTypeList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "keyWord": { |
| | | "type": "string" |
| | | }, |
| | | "page": { |
| | | "description": "页码", |
| | | "type": "integer" |
| | | }, |
| | | "pageSize": { |
| | | "description": "每页大小", |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | | "request.GetWorkerList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "keyWord": { |
| | | "type": "string" |
| | | }, |
| | | "page": { |
| | | "description": "页码", |
| | | "type": "integer" |
| | | }, |
| | | "pageSize": { |
| | | "description": "每页大小", |
| | | "type": "integer" |
| | | } |
| | | } |
| | | }, |
| | | "request.GetWorkshopManageCar": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | "type": "integer" |
| | | }, |
| | | "marketName": { |
| | | "description": "/庄口名", |
| | | "description": "庄口名", |
| | | "type": "string" |
| | | }, |
| | | "workshopName": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.SalaryType": { |
| | | "type": "object", |
| | | "properties": { |
| | | "type": { |
| | | "description": "字典类型,薪资类型:8", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "values": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/request.SalaryTypeValue" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "request.SalaryTypeValue": { |
| | | "type": "object", |
| | | "properties": { |
| | | "isDefault": { |
| | | "description": "是否可编辑", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.SaveRankStandard": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | - DictTypeWorkshop |
| | | - DictTypeColor |
| | | - DictTypeSpec |
| | | constvar.MiniDictType: |
| | | enum: |
| | | - 1 |
| | | - 2 |
| | | - 3 |
| | | - 4 |
| | | - 5 |
| | | - 6 |
| | | - 7 |
| | | - 8 |
| | | type: integer |
| | | x-enum-comments: |
| | | EarlyWarningDay: 预警天数 |
| | | InspectionWayType: 质检方式类型 |
| | | MiniDictTypeBomVersionType: Bom版本类型 |
| | | MiniDictTypePlcBrand: PLC品牌 |
| | | OutsourcingSupplierCreditGrade: 信用等级 |
| | | OutsourcingSupplierRange: 供货范围 |
| | | OutsourcingSupplierType: 委外供应商类型 |
| | | SalaryType: 嘉联薪资类型 |
| | | x-enum-varnames: |
| | | - MiniDictTypePlcBrand |
| | | - MiniDictTypeBomVersionType |
| | | - EarlyWarningDay |
| | | - InspectionWayType |
| | | - OutsourcingSupplierType |
| | | - OutsourcingSupplierCreditGrade |
| | | - OutsourcingSupplierRange |
| | | - SalaryType |
| | | constvar.WorkerStatus: |
| | | enum: |
| | | - 1 |
| | | - 2 |
| | | - 3 |
| | | - 4 |
| | | type: integer |
| | | x-enum-comments: |
| | | WorkerStatusHoliday: 请假 |
| | | WorkerStatusOvertime: 加班 |
| | | WorkerStatusRest: 休息 |
| | | WorkerStatusWorking: 在班 |
| | | x-enum-varnames: |
| | | - WorkerStatusWorking |
| | | - WorkerStatusRest |
| | | - WorkerStatusHoliday |
| | | - WorkerStatusOvertime |
| | | gorm.DeletedAt: |
| | | properties: |
| | | time: |
| | |
| | | description: 数量 |
| | | type: integer |
| | | type: object |
| | | models.MiniDict: |
| | | properties: |
| | | id: |
| | | type: integer |
| | | isDefault: |
| | | type: boolean |
| | | name: |
| | | type: string |
| | | type: |
| | | $ref: '#/definitions/constvar.MiniDictType' |
| | | value: |
| | | type: string |
| | | type: object |
| | | models.RawSilkPriceStandard: |
| | | properties: |
| | | createdAt: |
| | |
| | | type: string |
| | | updatedAt: |
| | | type: string |
| | | type: object |
| | | models.SalaryPlan: |
| | | properties: |
| | | addPeople: |
| | | type: string |
| | | createTime: |
| | | type: string |
| | | createdAt: |
| | | type: string |
| | | cycle: |
| | | type: string |
| | | deletedAt: |
| | | $ref: '#/definitions/gorm.DeletedAt' |
| | | id: |
| | | type: integer |
| | | name: |
| | | type: string |
| | | salaryFormula: |
| | | type: string |
| | | salaryType: |
| | | type: string |
| | | updatedAt: |
| | | type: string |
| | | workTypes: |
| | | items: |
| | | $ref: '#/definitions/models.WorkTypeManage' |
| | | type: array |
| | | type: object |
| | | models.WorkTypeManage: |
| | | properties: |
| | | addPeople: |
| | | type: string |
| | | createTime: |
| | | type: string |
| | | createdAt: |
| | | type: string |
| | | deletedAt: |
| | | $ref: '#/definitions/gorm.DeletedAt' |
| | | guaranteedWages: |
| | | type: number |
| | | id: |
| | | type: integer |
| | | isGuaranteed: |
| | | type: boolean |
| | | salaryPlans: |
| | | items: |
| | | $ref: '#/definitions/models.SalaryPlan' |
| | | type: array |
| | | updatedAt: |
| | | type: string |
| | | workName: |
| | | type: string |
| | | type: object |
| | | models.Worker: |
| | | properties: |
| | | addPeople: |
| | | type: string |
| | | employmentTime: |
| | | type: string |
| | | groupNumber: |
| | | type: integer |
| | | id: |
| | | type: string |
| | | name: |
| | | type: string |
| | | phoneNum: |
| | | type: string |
| | | shopId: |
| | | type: string |
| | | shopName: |
| | | type: string |
| | | status: |
| | | $ref: '#/definitions/constvar.WorkerStatus' |
| | | workType: |
| | | type: string |
| | | workTypeId: |
| | | type: integer |
| | | type: object |
| | | models.WorkshopManage: |
| | | properties: |
| | |
| | | description: 合计 |
| | | type: number |
| | | type: object |
| | | request.GetSalaryPlanList: |
| | | properties: |
| | | keyWord: |
| | | type: string |
| | | page: |
| | | description: 页码 |
| | | type: integer |
| | | pageSize: |
| | | description: 每页大小 |
| | | type: integer |
| | | type: object |
| | | request.GetWorkTypeList: |
| | | properties: |
| | | keyWord: |
| | | type: string |
| | | page: |
| | | description: 页码 |
| | | type: integer |
| | | pageSize: |
| | | description: 每页大小 |
| | | type: integer |
| | | type: object |
| | | request.GetWorkerList: |
| | | properties: |
| | | keyWord: |
| | | type: string |
| | | page: |
| | | description: 页码 |
| | | type: integer |
| | | pageSize: |
| | | description: 每页大小 |
| | | type: integer |
| | | type: object |
| | | request.GetWorkshopManageCar: |
| | | properties: |
| | | groupNumber: |
| | | description: 组别 |
| | | type: integer |
| | | marketName: |
| | | description: /庄口名 |
| | | description: 庄口名 |
| | | type: string |
| | | workshopName: |
| | | description: 车间名称 |
| | |
| | | startFineness: |
| | | description: 开始纤度 |
| | | type: number |
| | | type: object |
| | | request.SalaryType: |
| | | properties: |
| | | type: |
| | | allOf: |
| | | - $ref: '#/definitions/constvar.MiniDictType' |
| | | description: 字典类型,薪资类型:8 |
| | | values: |
| | | items: |
| | | $ref: '#/definitions/request.SalaryTypeValue' |
| | | type: array |
| | | type: object |
| | | request.SalaryTypeValue: |
| | | properties: |
| | | isDefault: |
| | | description: 是否可编辑 |
| | | type: boolean |
| | | name: |
| | | description: 名称 |
| | | type: string |
| | | type: object |
| | | request.SaveRankStandard: |
| | | properties: |
| | |
| | | summary: 保存产量登记表 |
| | | tags: |
| | | - 生产管理/产量登记表 |
| | | /api-jl/v1/salary/deleteSalaryPlanInfo/{id}: |
| | | delete: |
| | | parameters: |
| | | - description: id |
| | | in: path |
| | | name: number |
| | | required: true |
| | | type: string |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 删除薪酬方案 |
| | | tags: |
| | | - 员工薪资/薪酬方案 |
| | | /api-jl/v1/salary/getSalaryPlanList: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.GetSalaryPlanList' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.SalaryPlan' |
| | | type: array |
| | | type: object |
| | | summary: 获取薪酬方案列表 |
| | | tags: |
| | | - 员工薪资/薪酬方案 |
| | | /api-jl/v1/salary/getSalaryTypeList/{type}: |
| | | get: |
| | | parameters: |
| | | - description: type |
| | | in: path |
| | | name: number |
| | | required: true |
| | | type: string |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.MiniDict' |
| | | type: array |
| | | type: object |
| | | summary: 获取薪资类型列表 |
| | | tags: |
| | | - 员工薪资/薪酬方案 |
| | | /api-jl/v1/salary/saveSalaryPlan: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/models.SalaryPlan' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 保存薪酬方案 |
| | | tags: |
| | | - 员工薪资/薪酬方案 |
| | | /api-jl/v1/salary/saveSalaryType: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.SalaryType' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 保存薪资类型 |
| | | tags: |
| | | - 员工薪资/薪酬方案 |
| | | /api-jl/v1/system/deletePriceStandard/{id}: |
| | | delete: |
| | | parameters: |
| | |
| | | summary: 保存车间管理 |
| | | tags: |
| | | - 系统设置/车间管理 |
| | | /api-jl/v1/worker/createWorkerInfo: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/models.Worker' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 创建人员信息 |
| | | tags: |
| | | - 员工管理/员工信息 |
| | | /api-jl/v1/worker/deleteWorkTypeInfo/{id}: |
| | | delete: |
| | | parameters: |
| | | - description: id |
| | | in: path |
| | | name: number |
| | | required: true |
| | | type: string |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 删除工种信息 |
| | | tags: |
| | | - 员工管理/工种信息 |
| | | /api-jl/v1/worker/deleteWorkerInfo/{id}: |
| | | delete: |
| | | parameters: |
| | | - description: id |
| | | in: path |
| | | name: number |
| | | required: true |
| | | type: string |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 删除人员信息 |
| | | tags: |
| | | - 员工管理/员工信息 |
| | | /api-jl/v1/worker/getWorkTypeList: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.GetWorkTypeList' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.WorkTypeManage' |
| | | type: array |
| | | type: object |
| | | summary: 获取工种列表 |
| | | tags: |
| | | - 员工管理/工种信息 |
| | | /api-jl/v1/worker/getWorkerList: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.GetWorkerList' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.Worker' |
| | | type: array |
| | | type: object |
| | | summary: 获取人员信息列表 |
| | | tags: |
| | | - 员工管理/员工信息 |
| | | /api-jl/v1/worker/saveWorkTypeInfo: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/models.WorkTypeManage' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 保存工种信息 |
| | | tags: |
| | | - 员工管理/工种信息 |
| | | /api-jl/v1/worker/updateWorkerInfo: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/models.Worker' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 更新人员信息 |
| | | tags: |
| | | - 员工管理/员工信息 |
| | | swagger: "2.0" |
| | |
| | | salaryApi.POST("saveSalaryPlan", salaryPlanController.SaveSalaryPlan) //保存薪酬方案 |
| | | salaryApi.POST("getSalaryPlanList", salaryPlanController.GetSalaryPlanList) //获取薪酬方案列表 |
| | | salaryApi.DELETE("deleteSalaryPlanInfo/:id", salaryPlanController.DeleteSalaryPlanInfo) //删除薪酬方案 |
| | | salaryApi.GET("getSalaryTypeList/:type", salaryPlanController.GetSalaryTypeList) //获取薪资类型列表 |
| | | salaryApi.POST("saveSalaryType", salaryPlanController.SaveSalaryType) //保存薪资类型 |
| | | } |
| | | |
| | | return r |