57 lines
1.2 KiB
Plaintext
57 lines
1.2 KiB
Plaintext
package kr.co.i4way.manage.model;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public class ImageInfoVo {
|
|
private String img_id;
|
|
private String img_path;
|
|
private String img_type;
|
|
private String img_file_nm;
|
|
private String img_nm;
|
|
private String custom1;
|
|
public String getImg_id() {
|
|
return img_id;
|
|
}
|
|
public void setImg_id(String img_id) {
|
|
this.img_id = img_id;
|
|
}
|
|
public String getImg_path() {
|
|
return img_path;
|
|
}
|
|
public void setImg_path(String img_path) {
|
|
this.img_path = img_path;
|
|
}
|
|
public String getImg_type() {
|
|
return img_type;
|
|
}
|
|
public void setImg_type(String img_type) {
|
|
this.img_type = img_type;
|
|
}
|
|
public String getImg_file_nm() {
|
|
return img_file_nm;
|
|
}
|
|
public void setImg_file_nm(String img_file_nm) {
|
|
this.img_file_nm = img_file_nm;
|
|
}
|
|
public String getImg_nm() {
|
|
return img_nm;
|
|
}
|
|
public void setImg_nm(String img_nm) {
|
|
this.img_nm = img_nm;
|
|
}
|
|
public String getCustom1() {
|
|
return custom1;
|
|
}
|
|
public void setCustom1(String custom1) {
|
|
this.custom1 = custom1;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "ImageInfoVo [img_id=" + img_id + ", img_path=" + img_path + ", img_type=" + img_type + ", img_file_nm="
|
|
+ img_file_nm + ", img_nm=" + img_nm + ", custom1=" + custom1 + "]";
|
|
}
|
|
|
|
|
|
}
|