zss
2023-08-09 e06fe535194cb73db903548f0e0750f508ebe5aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.yuanchu.mom.pojo.vo;
 
 
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import lombok.Data;
 
@Data
public class TechnologyTemplateVo2 {
 
    @JsonSerialize
    private Integer id;
 
    //工序名称
    @JsonSerialize
    private String name;
 
    //元件
    @JsonSerialize
    private String element;
 
    //基本要求
    @JsonSerialize
    private String base;
 
    //控制要点
    @JsonSerialize
    private String control;
 
    //备注
    @JsonSerialize
    private String note;
 
 
}