admin
2019-05-15 2dc52e3ba49433a54368c3b64ba3539b4bb051ae
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;
    }
}