王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
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.slcf.pojo;
 
/**
 * 仓库类型实体类
 * @author admin
 * @date 2018年11月26日
 */
public class WhsTypeBean {
    private String whs_type;
 
    private String whs_desc;
 
    private String modi_user;
    
    private String modi_time;
 
    
    public String getWhs_type() {
        return whs_type;
    }
 
    public void setWhs_type(String whs_type) {
        this.whs_type = whs_type;
    }
 
    public String getWhs_desc() {
        return whs_desc;
    }
 
    public void setWhs_desc(String whs_desc) {
        this.whs_desc = whs_desc;
    }
 
    /**
     * @return the modi_user
     */
    public String getModi_user() {
        return modi_user;
    }
 
    /**
     * @param modi_user the modi_user to set
     */
    public void setModi_user(String modi_user) {
        this.modi_user = modi_user;
    }
 
    /**
     * @return the modi_time
     */
    public String getModi_time() {
        return modi_time;
    }
 
    /**
     * @param modi_time the modi_time to set
     */
    public void setModi_time(String modi_time) {
        this.modi_time = modi_time;
    }
 
 
}