#
18516761980
2021-08-16 f25c800bca726b67ea74e6ed576b038b1b9561a7
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
package com.slcf.pojo;
 
/**
 * 入出库类型实体类
 * @author admin
 * @date 2018年11月5日
 */
public class IoTypeBean {
    private Long io_type;
 
    private String io_desc;
 
    private String modi_user;
    
    private String modi_time;
 
    /**
     * @return the io_type
     */
    public Long getIo_type() {
        return io_type;
    }
 
    /**
     * @param io_type the io_type to set
     */
    public void setIo_type(Long io_type) {
        this.io_type = io_type;
    }
 
    /**
     * @return the io_desc
     */
    public String getIo_desc() {
        return io_desc;
    }
 
    /**
     * @param io_desc the io_desc to set
     */
    public void setIo_desc(String io_desc) {
        this.io_desc = io_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;
    }
 
}