zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/**  
* @Title: SchProdInventory.java
* @Description:
* @author baoshiwei  
* @date 2019年5月15日  
* @version 1.0  
*/ 
package com.shlanbao.tzsc.base.mapping;
 
import java.io.Serializable;
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**  
* @Title: SchProdInventory 
* @Description:  成品入库记录实体类
* @author baoshiwei  
* @date 2019年5月15日  
*/
public class SchProdInventory implements Serializable{
 
    private String id;                                        // 主键id
    private String materialCode;                            // 成品牌号
    private String traceCode;                                // 在制品追溯码
    private String yhgcm;                                    // 一号工程码
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date time;                                        // 入库时间
    private String remark;                                    // 备注
    
    
    /**
     * @return the id
     */
    public String getId() {
        return id;
    }
    /**
     * @param id the id to set
     */
    public void setId(String id) {
        this.id = id;
    }
    /**
     * @return the materialCode
     */
    public String getMaterialCode() {
        return materialCode;
    }
    /**
     * @param materialCode the materialCode to set
     */
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
    /**
     * @return the traceCode
     */
    public String getTraceCode() {
        return traceCode;
    }
    /**
     * @param traceCode the traceCode to set
     */
    public void setTraceCode(String traceCode) {
        this.traceCode = traceCode;
    }
    /**
     * @return the yhgcm
     */
    public String getYhgcm() {
        return yhgcm;
    }
    /**
     * @param yhgcm the yhgcm to set
     */
    public void setYhgcm(String yhgcm) {
        this.yhgcm = yhgcm;
    }
    /**
     * @return the time
     */
    public Date getTime() {
        return time;
    }
    /**
     * @param time the time to set
     */
    public void setTime(Date time) {
        this.time = time;
    }
    /**
     * @return the remark
     */
    public String getRemark() {
        return remark;
    }
    /**
     * @param remark the remark to set
     */
    public void setRemark(String remark) {
        this.remark = remark;
    }
    
    
}