You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
627 B
Java
31 lines
627 B
Java
package com.engine.custom.sl.entity;
|
|
|
|
public class acsryItem {
|
|
private String acsryNm;
|
|
private String savePath;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "acsryItem{" +
|
|
"acsryNm='" + acsryNm + '\'' +
|
|
", savePath='" + savePath + '\'' +
|
|
'}';
|
|
}
|
|
|
|
public String getAcsryNm() {
|
|
return acsryNm;
|
|
}
|
|
|
|
public void setAcsryNm(String acsryNm) {
|
|
this.acsryNm = acsryNm;
|
|
}
|
|
|
|
public String getSavePath() {
|
|
return savePath;
|
|
}
|
|
|
|
public void setSavePath(String savePath) {
|
|
this.savePath = savePath;
|
|
}
|
|
}
|