38 lines
645 B
Java
38 lines
645 B
Java
|
package weaver.aiyh_pcn.copy_attachment;
|
||
|
|
||
|
/**
|
||
|
* @author EBU7-dev1-ayh
|
||
|
* @create 2021/10/9 0009 14:39
|
||
|
* id和name
|
||
|
*/
|
||
|
|
||
|
|
||
|
public class AttachmentIdName {
|
||
|
private String docid;
|
||
|
private String imagefilename;
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return "AttachmentIdName{" +
|
||
|
"docId='" + docid + '\'' +
|
||
|
", imagefilename='" + imagefilename + '\'' +
|
||
|
'}';
|
||
|
}
|
||
|
|
||
|
public String getDocid() {
|
||
|
return docid;
|
||
|
}
|
||
|
|
||
|
public void setDocid(String docId) {
|
||
|
this.docid = docId;
|
||
|
}
|
||
|
|
||
|
public String getImagefilename() {
|
||
|
return imagefilename;
|
||
|
}
|
||
|
|
||
|
public void setImagefilename(String imagefilename) {
|
||
|
this.imagefilename = imagefilename;
|
||
|
}
|
||
|
}
|