zhangqian
2024-04-28 067650e77790adeb5222b7736649cb5b6b016162
docs/swagger.yaml
@@ -1,4 +1,21 @@
definitions:
  constvar.AttendanceStatus:
    enum:
    - 1
    - 2
    - 3
    - 4
    type: integer
    x-enum-comments:
      Abnormal: 异常
      Normal: 正常
      Overtime: 加班
      Vacation: 休假
    x-enum-varnames:
    - Normal
    - Overtime
    - Vacation
    - Abnormal
  constvar.CarFlag:
    enum:
    - 1
@@ -50,6 +67,17 @@
    - DictTypeWorkshop
    - DictTypeColor
    - DictTypeSpec
  constvar.FileTemplateCategory:
    enum:
    - 1
    - 2
    type: integer
    x-enum-comments:
      FileTemplateCategory_Output: 出库
      FileTemplateCategory_Selfmade: 入库-自制
    x-enum-varnames:
    - FileTemplateCategory_Selfmade
    - FileTemplateCategory_Output
  constvar.MiniDictType:
    enum:
    - 1
@@ -103,6 +131,64 @@
      valid:
        description: Valid is true if Time is not NULL
        type: boolean
    type: object
  models.AttendanceManage:
    properties:
      addPeople:
        type: string
      classes:
        type: string
      classesEndTime:
        type: string
      classesStartTime:
        type: string
      createTime:
        type: string
      createdAt:
        type: string
      date:
        type: string
      deletedAt:
        $ref: '#/definitions/gorm.DeletedAt'
      endWorkTime:
        type: string
      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
    type: object
  models.AttendanceRule:
    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
    type: object
  models.Dict:
    properties:
@@ -326,7 +412,7 @@
      worker:
        allOf:
        - $ref: '#/definitions/models.Worker'
        description: 工人ID
        description: 工人
      workerId:
        description: 工人ID
        type: string
@@ -443,6 +529,47 @@
        type: string
      workTypeId:
        type: integer
    type: object
  models.WorkerPosition:
    properties:
      createdAt:
        type: string
      creator:
        type: string
      deletedAt:
        $ref: '#/definitions/gorm.DeletedAt'
      endDate:
        description: 结束日期
        type: string
      endWorkerPosition:
        description: 结束车号
        type: integer
      id:
        type: integer
      startDate:
        description: 开始日期
        type: string
      startWorkerPosition:
        description: 开始车号
        type: integer
      updatedAt:
        type: string
      worker:
        allOf:
        - $ref: '#/definitions/models.Worker'
        description: 工人
      workerId:
        description: 工人ID
        type: string
      workshop:
        description: 车间编号
        type: string
      workshopGroup:
        description: 车组
        type: integer
      workshopName:
        description: 车间名称
        type: string
    type: object
  models.WorkshopManage:
    properties:
@@ -672,6 +799,42 @@
        description: 工人ID
        type: string
    type: object
  request.AddWorkPositionRequest:
    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
      workshopName:
        description: 车间名称
        type: string
    required:
    - endDate
    - endWorkerPosition
    - startDate
    - startWorkerPosition
    - workerId
    - workshop
    - workshopGroup
    - workshopName
    type: object
  request.ChangeYieldRegister:
    properties:
      createTime:
@@ -689,6 +852,14 @@
      workshopNumber:
        description: 车间编码
        type: string
    type: object
  request.DeleteAttendanceInfo:
    properties:
      ids:
        description: 记录id
        items:
          type: integer
        type: array
    type: object
  request.DynamicsRank:
    properties:
@@ -716,6 +887,25 @@
      sum:
        description: 合计
        type: number
    type: object
  request.GetAttendanceList:
    properties:
      keyword:
        type: string
      page:
        description: 页码
        type: integer
      pageSize:
        description: 每页大小
        type: integer
    type: object
  request.GetAttendanceStatistic:
    properties:
      keyword:
        type: string
      month:
        description: 月份
        type: string
    type: object
  request.GetMentorList:
    properties:
@@ -751,6 +941,17 @@
        type: integer
    type: object
  request.GetWorkerList:
    properties:
      keyword:
        type: string
      page:
        description: 页码
        type: integer
      pageSize:
        description: 每页大小
        type: integer
    type: object
  request.GetWorkerPositionList:
    properties:
      keyword:
        type: string
@@ -850,6 +1051,48 @@
          $ref: '#/definitions/request.RankStandard'
        type: array
    type: object
  request.TemplateCategoryRequest:
    properties:
      category:
        $ref: '#/definitions/constvar.FileTemplateCategory'
    type: object
  request.UpdateAttendance:
    properties:
      classes:
        description: 班次
        type: string
      classesEndTime:
        description: 班次下班时间
        type: string
      classesStartTime:
        description: 班次开始时间
        type: string
      date:
        description: 日期
        type: string
      endWorkTime:
        description: 下班打卡时间
        type: string
      overTimeDuration:
        description: 加班时长
        type: number
      startWorkTime:
        description: 上班打卡时间
        type: string
      status:
        allOf:
        - $ref: '#/definitions/constvar.AttendanceStatus'
        description: 状态
      workTypeId:
        description: 工种id
        type: integer
      workerId:
        description: 人员id
        type: string
      workerName:
        description: 人员姓名
        type: string
    type: object
  request.UpdateDict:
    properties:
      dictType:
@@ -881,6 +1124,44 @@
      workerId:
        description: 工人ID
        type: string
    type: object
  request.UpdateWorkerPositionRequest:
    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
      workshopName:
        description: 车间名称
        type: string
    required:
    - endDate
    - endWorkerPosition
    - startDate
    - startWorkerPosition
    - workerId
    - workshop
    - workshopGroup
    - workshopName
    type: object
  request.YieldRegisterCircleInfo:
    properties:
@@ -1026,6 +1307,76 @@
        description: 产量登记表id
        type: integer
    type: object
  response.AttendanceDetail:
    properties:
      classes:
        description: 班次
        type: string
      classesEndTime:
        description: 班次下班时间
        type: string
      classesStartTime:
        description: 班次开始时间
        type: string
      date:
        description: 日期
        type: integer
      endWorkTime:
        description: 下班打卡时间
        type: string
      startWorkTime:
        description: 上班打卡时间
        type: string
      status:
        allOf:
        - $ref: '#/definitions/constvar.AttendanceStatus'
        description: 状态
      weekDay:
        description: 星期
        type: string
    type: object
  response.AttendanceList:
    properties:
      list:
        items:
          $ref: '#/definitions/response.AttendanceStatistic'
        type: array
    type: object
  response.AttendanceStatistic:
    properties:
      actualAttendanceDays:
        description: 实际出勤天数
        type: integer
      details:
        description: 详情
        items:
          $ref: '#/definitions/response.AttendanceDetail'
        type: array
      month:
        description: 月份
        type: string
      requiredAttendanceDays:
        description: 应出勤天数
        type: integer
      restDayOverTime:
        description: 休息日加班时长
        type: number
      weekdayOverTime:
        description: 工作日加班时长
        type: number
      workType:
        description: 工种
        type: string
      workTypeId:
        description: 工种id
        type: integer
      workerId:
        description: 人员id
        type: string
      workerName:
        description: 人员姓名
        type: string
    type: object
  response.CarAndLevel:
    properties:
      car:
@@ -1111,6 +1462,187 @@
info:
  contact: {}
paths:
  /api-jl/v1/attendance/attendanceInput:
    post:
      produces:
      - application/xlsx
      responses:
        "200":
          description: 成功
          schema:
            $ref: '#/definitions/util.Response'
      summary: 考勤导入
      tags:
      - 考勤管理
  /api-jl/v1/attendance/deleteAttendanceInfo:
    delete:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.DeleteAttendanceInfo'
      - 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/attendance/getAttendanceList:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.GetAttendanceList'
      - 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.AttendanceManage'
                  type: array
              type: object
      summary: 获取考勤列表
      tags:
      - 考勤管理
  /api-jl/v1/attendance/getAttendanceRule:
    get:
      parameters:
      - 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/attendance/getAttendanceStatistic:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.GetAttendanceStatistic'
      - description: token
        in: header
        name: Authorization
        required: true
        type: string
      produces:
      - application/json
      responses:
        "200":
          description: 成功
          schema:
            allOf:
            - $ref: '#/definitions/util.Response'
            - properties:
                data:
                  $ref: '#/definitions/response.AttendanceList'
              type: object
      summary: 获取考勤统计
      tags:
      - 考勤管理
  /api-jl/v1/attendance/getTemplate:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.TemplateCategoryRequest'
      produces:
      - application/json
      responses:
        "200":
          description: 成功
          schema:
            $ref: '#/definitions/util.Response'
      summary: 获取模版列表
      tags:
      - 考勤管理
  /api-jl/v1/attendance/saveAttendanceRule:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/models.AttendanceRule'
      - 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/attendance/updateAttendance:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.UpdateAttendance'
      - 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/fineness/changeYieldRegister:
    post:
      parameters:
@@ -1512,7 +2044,7 @@
      parameters:
      - description: id
        in: path
        name: number
        name: id
        required: true
        type: string
      - description: token
@@ -1940,7 +2472,7 @@
      tags:
      - 系统设置/车间管理
  /api-jl/v1/system/getWorkshopManageList:
    get:
    post:
      parameters:
      - description: token
        in: header
@@ -2066,7 +2598,7 @@
      parameters:
      - description: id
        in: path
        name: number
        name: id
        required: true
        type: string
      - description: token
@@ -2089,7 +2621,7 @@
      parameters:
      - description: id
        in: path
        name: number
        name: id
        required: true
        type: string
      - description: token
@@ -2217,4 +2749,106 @@
      summary: 更新人员信息
      tags:
      - 员工管理/员工信息
  /api-jl/v1/workerPosition/createWorkerPositionInfo:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.AddWorkPositionRequest'
      - 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/workerPosition/deleteWorkerPositionInfo/{id}:
    delete:
      parameters:
      - description: id
        in: path
        name: id
        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/workerPosition/getWorkerPositionList:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.GetWorkerPositionList'
      - 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.WorkerPosition'
                  type: array
              type: object
      summary: 获取机台信息列表
      tags:
      - 机台管理
  /api-jl/v1/workerPosition/updateWorkerPositionInfo:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/request.UpdateWorkerPositionRequest'
      - 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"