admin
2019-05-16 6d58ee1f52f851a240e946ba863a23c0fd08c292
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.dto.share;
 
public class ShareInfoDTO {
    // 分享记录id
    private Long shareId;
    // 分享链接
    private String shareUrl;
    
    
    public Long getShareId() {
        return shareId;
    }
    public void setShareId(Long shareId) {
        this.shareId = shareId;
    }
    public String getShareUrl() {
        return shareUrl;
    }
    public void setShareUrl(String shareUrl) {
        this.shareUrl = shareUrl;
    }
}