package com.slcf.pojo;
|
|
/**
|
* PLC错误码实体类
|
* @author admin
|
* @date 2018年11月6日
|
*/
|
public class PlcErrorBean {
|
private Long error_code;
|
|
private String error_desc;
|
|
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 error_desc
|
*/
|
public String getError_desc() {
|
return error_desc;
|
}
|
|
/**
|
* @param error_desc the error_desc to set
|
*/
|
public void setError_desc(String error_desc) {
|
this.error_desc = error_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;
|
}
|
|
/**
|
* @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;
|
}
|
|
|
}
|