| | |
| | | } |
| | | |
| | | WorkshopStats struct { |
| | | Name string |
| | | Total int64 |
| | | Qualified int64 |
| | | Defective int |
| | | Percent int |
| | | Name string //车间名称 |
| | | Total int64 //生产总数 |
| | | Qualified int64 //正品数量 |
| | | Defective int //次品数量 |
| | | Percent int //正品率 |
| | | } |
| | | |
| | | WorkOrderStats struct { |
| | | Number string //编号 |
| | | Product string //产品 |
| | | Scale string //规格 |
| | | PlanTime string //计划时间 |
| | | Percent int //完成进度 |
| | | procedureNum int //工序数量 |
| | | DelayDays int //延期天数 |
| | | Number string //编号 |
| | | Product string //产品 |
| | | Scale string //规格 |
| | | PlanTime string //计划时间 |
| | | DelayDays int //延期天数 |
| | | ProcedureNum int //工序数量 |
| | | FinishProcedureNum int //已完成工序数量 |
| | | ProcessingProcedureNum int //进行中工序数量 |
| | | } |
| | | |
| | | DashboardSearch struct { |