李林
2023-08-18 741c74084d213655e7d77260f14c295dcf099690
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;  //成品不合格
 
 
 
}