zss
2023-08-17 35091697a5421218d31e7e2d2c58b6a5385cc663
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;  //成品不合格
 
 
 
}