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;
|
}
|
|
}
|