MobileAttachDto.java 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.kingdee.eas.custom.wamke.syncdata.dto;
  2. public class MobileAttachDto {
  3. private Integer id;
  4. private String attachType;
  5. private String attchUrl;
  6. private String attachName;
  7. private String ossName;
  8. public void setId(Integer id) {
  9. this.id = id;
  10. }
  11. public Integer getId() {
  12. return id;
  13. }
  14. public void setAttachType(String attachType) {
  15. this.attachType = attachType;
  16. }
  17. public String getAttachType() {
  18. return attachType;
  19. }
  20. public void setAttchUrl(String attchUrl) {
  21. this.attchUrl = attchUrl;
  22. }
  23. public String getAttchUrl() {
  24. return attchUrl;
  25. }
  26. public void setAttachName(String attachName) {
  27. this.attachName = attachName;
  28. }
  29. public String getAttachName() {
  30. return attachName;
  31. }
  32. public void setOssName(String ossName) {
  33. this.ossName = ossName;
  34. }
  35. public String getOssName() {
  36. return ossName;
  37. }
  38. }