package com.slcf.pojo; /** * 堆垛机错误码实体类 * @author admin * @date 2018年11月6日 */ public class CrnErrorBean { private Long error_code; private String err_name; private String modi_user; private String modi_time; private String appe_user; private String appe_time; /** * @return the error_code */ public Long getError_code() { return error_code; } /** * @param error_code the error_code to set */ public void setError_code(Long error_code) { this.error_code = error_code; } /** * @return the err_name */ public String getErr_name() { return err_name; } /** * @param err_name the err_name to set */ public void setErr_name(String err_name) { this.err_name = err_name; } /** * @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; } /** * @return the appe_user */ public String getAppe_user() { return appe_user; } /** * @param appe_user the appe_user to set */ public void setAppe_user(String appe_user) { this.appe_user = appe_user; } /** * @return the appe_time */ public String getAppe_time() { return appe_time; } /** * @param appe_time the appe_time to set */ public void setAppe_time(String appe_time) { this.appe_time = appe_time; } }