package com.kingdee.eas.custom.wamke.syncdata.dto; public class MobileAttachDto { private Integer id; private String attachType; private String attchUrl; private String attachName; private String ossName; public void setId(Integer id) { this.id = id; } public Integer getId() { return id; } public void setAttachType(String attachType) { this.attachType = attachType; } public String getAttachType() { return attachType; } public void setAttchUrl(String attchUrl) { this.attchUrl = attchUrl; } public String getAttchUrl() { return attchUrl; } public void setAttachName(String attachName) { this.attachName = attachName; } public String getAttachName() { return attachName; } public void setOssName(String ossName) { this.ossName = ossName; } public String getOssName() { return ossName; } }