32 lines
734 B
Java
32 lines
734 B
Java
package com.nis.domain.configuration;
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
public class ManipulatCfgExport extends CfgIndexInfo {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = -842585769617969577L;
|
|
|
|
@ExcelField(title="action_export",dictType="SERVICE_ACTION",sort=2)
|
|
private String actionExport;
|
|
|
|
@ExcelField(title="response_code",sort=2)
|
|
private String responseCode;
|
|
|
|
public String getResponseCode() {
|
|
return responseCode;
|
|
}
|
|
public void setResponseCode(String responseCode) {
|
|
this.responseCode = responseCode;
|
|
}
|
|
public String getActionExport() {
|
|
return actionExport;
|
|
}
|
|
public void setActionExport(String actionExport) {
|
|
this.actionExport = actionExport;
|
|
}
|
|
|
|
}
|