Commit def63164 by zzd

Merge branch 'feature-offline-activity' into developer

parents f67e9a11 028a59eb
...@@ -16,7 +16,7 @@ public class HmLinkDTO implements Serializable { ...@@ -16,7 +16,7 @@ public class HmLinkDTO implements Serializable {
private static final long serialVersionUID = 1967119533845800L; private static final long serialVersionUID = 1967119533845800L;
private String linkId; private Long linkId;
private String linkCode; private String linkCode;
/**1专用链接 2通用链接*/ /**1专用链接 2通用链接*/
private Integer linkType; private Integer linkType;
...@@ -78,11 +78,11 @@ public class HmLinkDTO implements Serializable { ...@@ -78,11 +78,11 @@ public class HmLinkDTO implements Serializable {
this.storeList = storeList; this.storeList = storeList;
} }
public void setLinkId(String linkId) { public void setLinkId(Long linkId) {
this.linkId = linkId; this.linkId = linkId;
} }
public String getLinkId() { public Long getLinkId() {
return linkId; return linkId;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment