zss
2023-08-15 772ce1ff99b32e0d8c5ee1135f8a9fb03eb9fc60
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;  //成品不合格
 
 
 
}