-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a08dac
commit c2b82c6
Showing
20 changed files
with
76 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,18 +30,17 @@ | |
package com.upupor.service.business.links.abstracts.dto; | ||
|
||
import com.upupor.service.business.links.abstracts.dto.parent.LinkParamDto; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.experimental.SuperBuilder; | ||
|
||
/** | ||
* @author Yang Runkang (cruise) | ||
* @createTime 2023-01-27 02:25 | ||
* @email: [email protected] | ||
*/ | ||
@Data | ||
@Builder | ||
@SuperBuilder | ||
public class ContentLinkParamDto extends LinkParamDto { | ||
private String contentId; | ||
private String msgId; | ||
private String contentTitle; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,18 +30,17 @@ | |
package com.upupor.service.business.links.abstracts.dto; | ||
|
||
import com.upupor.service.business.links.abstracts.dto.parent.LinkParamDto; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.experimental.SuperBuilder; | ||
|
||
/** | ||
* @author Yang Runkang (cruise) | ||
* @createTime 2023-01-27 02:25 | ||
* @email: [email protected] | ||
*/ | ||
@Data | ||
@Builder | ||
@SuperBuilder | ||
public class MemberProfileLinkParamDto extends LinkParamDto { | ||
private String memberUserId; | ||
private String msgId; | ||
private String memberUserName; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,18 +30,17 @@ | |
package com.upupor.service.business.links.abstracts.dto; | ||
|
||
import com.upupor.service.business.links.abstracts.dto.parent.LinkParamDto; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.experimental.SuperBuilder; | ||
|
||
/** | ||
* @author Yang Runkang (cruise) | ||
* @createTime 2023-01-27 02:25 | ||
* @email: [email protected] | ||
*/ | ||
@Data | ||
@Builder | ||
@SuperBuilder | ||
public class MessageBoardLinkParamDto extends LinkParamDto { | ||
private String targetUserId; | ||
private String msgId; | ||
private String title; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,18 +30,17 @@ | |
package com.upupor.service.business.links.abstracts.dto; | ||
|
||
import com.upupor.service.business.links.abstracts.dto.parent.LinkParamDto; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.experimental.SuperBuilder; | ||
|
||
/** | ||
* @author Yang Runkang (cruise) | ||
* @createTime 2023-01-27 02:25 | ||
* @email: [email protected] | ||
*/ | ||
@Data | ||
@Builder | ||
@SuperBuilder | ||
public class RadioLinkParamDto extends LinkParamDto { | ||
private String radioId; | ||
private String msgId; | ||
private String radioIntro; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,12 +29,27 @@ | |
|
||
package com.upupor.service.business.links.abstracts.dto.parent; | ||
|
||
import lombok.Data; | ||
import lombok.experimental.SuperBuilder; | ||
|
||
/** | ||
* 链接所需参数 标识 | ||
* | ||
* @author Yang Runkang (cruise) | ||
* @createTime 2023-01-27 02:44 | ||
* @email: [email protected] | ||
*/ | ||
@Data | ||
@SuperBuilder | ||
public class LinkParamDto { | ||
/** | ||
* 评论所在楼层 | ||
*/ | ||
private Long floorNum; | ||
|
||
/** | ||
* 消息Id | ||
*/ | ||
private String msgId; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.