| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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;
- }
- }
|