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