zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * [功能说明]:物料锁定 
 * 
 * @createTime 2019年5月15日11:41:21
 * @author wanchanghuang
 */
 
public class MdMaterialLk implements java.io.Serializable {
 
 
    private String id;
    private String materialCode; //物料编码
    private String materialBatchCode; //批次号
    private String type; //0-解锁  1-锁定 
    @DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
    private Date createDate;
    @DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateDate;
    
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getMaterialCode() {
        return materialCode;
    }
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
    public String getMaterialBatchCode() {
        return materialBatchCode;
    }
    public void setMaterialBatchCode(String materialBatchCode) {
        this.materialBatchCode = materialBatchCode;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public Date getCreateDate() {
        return createDate;
    }
    public void setCreateDate(Date createDate) {
        this.createDate = createDate;
    }
    public Date getUpdateDate() {
        return updateDate;
    }
    public void setUpdateDate(Date updateDate) {
        this.updateDate = updateDate;
    }
    
}