李林
2023-08-18 e84a8f8d8a8b4d837fe589ab61eac9ecd418e05d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.yuanchu.mom.pojo;
 
 
import lombok.Data;
 
@Data
public class StatisticsData {
  private int material;  //原材料合格
  private int process;   //过程合格
  private int finished;  //成品合格
  private int unmaterial;  //原材料不合格
  private int unprocess;   //过程不合格
  private int unfinished;  //成品不合格
 
 
 
}