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
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
* @ClassName: EqmLubricatPlanParam 
* @Description: 润滑计划项 
* @author luo
* @date 2015年7月14日 上午10:19:52 
*
 */
public class EqmLubricantPlanParam {
    private String id;// ID    nvarchar(50)    Unchecked
    private String code;//CODE
    private String name;//NAME
    private String des;//DES
    private String oiltd;//润滑济ID OILID
    private String fill_quantity;//润滑使用量FILL_QUANTITY
    private String fill_unit;//润滑单位FILL_UNIT
    private SysUser end_user;//完成人
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date end_time;//完成时间
    private String plan_id;//设备润滑计划
    private String methods;//润滑方式
    private SysEqpType sysEqpType;//数据字典id
    
    public SysEqpType getSysEqpType() {
        return sysEqpType;
    }
    public void setSysEqpType(SysEqpType sysEqpType) {
        this.sysEqpType = sysEqpType;
    }
    public String getMethods() {
        return methods;
    }
    public void setMethods(String methods) {
        this.methods = methods;
    }
    public String getPlan_id() {
        return plan_id;
    }
    public void setPlan_id(String plan_id) {
        this.plan_id = plan_id;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getDes() {
        return des;
    }
    public void setDes(String des) {
        this.des = des;
    }
    public String getOiltd() {
        return oiltd;
    }
    public void setOiltd(String oiltd) {
        this.oiltd = oiltd;
    }
    public String getFill_quantity() {
        return fill_quantity;
    }
    public void setFill_quantity(String fill_quantity) {
        this.fill_quantity = fill_quantity;
    }
    public String getFill_unit() {
        return fill_unit;
    }
    public void setFill_unit(String fill_unit) {
        this.fill_unit = fill_unit;
    }
    public SysUser getEnd_user() {
        return end_user;
    }
    public void setEnd_user(SysUser end_user) {
        this.end_user = end_user;
    }
    public Date getEnd_time() {
        return end_time;
    }
    public void setEnd_time(Date end_time) {
        this.end_time = end_time;
    }
    
    
}