JsImageBean.java
387 Bytes
package com.wd.foundation.bean;
public class JsImageBean {
private int type;
private String content;
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}