Entity_ClassDiagram.md 1.4 KB

统计功能实体类图

classDiagram
    class SysMenu {
        +Long menuId
        +String menuName
        +String parentName
        +Long parentId
        +Integer orderNum
        +String path
        +String component
        +String query
        +String routeName
        +String isFrame
        +String isCache
        +String menuType
        +String visible
        +String status
        +String perms
        +String icon
        +List~SysMenu~ children
        +String createBy
        +Date createTime
        +String updateBy
        +Date updateTime
        +String remark
    }

实体类说明

GxtCoefficientScore 是系数与定检台数统计的实体类,包含了以下主要属性:

  1. 基础统计信息

    • subitemCoefficient - 分项完成系数
    • subitemCoefficientSum - 分项系数和
    • plannedCount - 计划定检台数
    • actualCount - 实际定检台数
  2. 扣分与说明

    • groupDeduction - 全组扣分
    • explainCode - 说明代码
  3. 时间与状态

    • monthPeriod - 统计月份
    • status - 状态
  4. 组织信息

    • detpName - 场站名称
    • deptId - 场站ID
  5. 工单系数

    • repairOrderCoefficient - 维修工单系数
    • workOrderCoefficient - 维保工单系数

该实体类继承自BaseEntity,包含了创建人、创建时间、更新人、更新时间等通用字段。