admin
2024-10-16 62a447d89331aee1feae7724c7616aa1bb2cfe79
fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDetailDTO.java
@@ -6,11 +6,11 @@
    private Long uid;
    private String url;
    private String webUrl;
    private Long goodsId;
    private String goodsId;
    private PushBaseContent content;
    public PushContentDetailDTO(PushTypeEnum type, Long uid, String url, String webUrl, Long goodsId, PushBaseContent content) {
    public PushContentDetailDTO(PushTypeEnum type, Long uid, String url, String webUrl, String goodsId, PushBaseContent content) {
        this.type = type;
        this.uid = uid;
        this.url = url;
@@ -51,11 +51,11 @@
        this.webUrl = webUrl;
    }
    public Long getGoodsId() {
    public String getGoodsId() {
        return goodsId;
    }
    public void setGoodsId(Long goodsId) {
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
@@ -66,4 +66,5 @@
    public void setContent(PushBaseContent content) {
        this.content = content;
    }
}