Skip to content

Commit

Permalink
style: notes
Browse files Browse the repository at this point in the history
  • Loading branch information
AnswerAIL committed Jan 16, 2021
1 parent 5af1205 commit 49ba203
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
/**
* DingerMarkdown
*
* <code>
* `@`DingerMarkdown(
* <pre>
* &#064;DingerMarkdown(
* value = "#### 下单失败啦 @13520200906\n - 订单号: ${orderNo}\n - 标识: ${flag}\n - 数量: ${num}",
* title = "下单结果反馈",
* phones = {"13520200906"},
Expand All @@ -32,7 +32,7 @@
* secret = "SAQ23a9039bb01f2dcd017b90ab8e9dda1355f97c9016f37ff371ec8124327c7f09")
* )
* void method(@Keyword String keyword, String orderNo, int num, boolean flag) {...}
* </code>
* </pre>
*
* @author Jaemon
* @since 1.0
Expand All @@ -59,7 +59,7 @@
/**
* phones. either atAll or phones
*
* @return `@` designated members
* @return &#064; designated members
*/
String[] phones() default {};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
/**
* DingerText
*
* <code>
* `@`DingerText(value = "send to dingtalk at ${date}", tokenId = @DingerTokenId("20200906"), phones = {"13520200906"})
* <pre>
* &#064;DingerText(value = "send to dingtalk at ${date}", tokenId = @DingerTokenId("20200906"), phones = {"13520200906"})
* void method(@Keyword String keyword, String date) {...}
* </code>
* </pre>
*
* @author Jaemon
* @since 1.0
Expand All @@ -44,14 +44,14 @@
/**
* atAll. either atAll or phones
*
* @return whether `@` all members
* @return whether &#064;all members
*/
boolean atAll() default false;

/**
* phones. either atAll or phones
*
* @return `@` designated members
* @return &#064; designated members
*/
String[] phones() default {};

Expand Down

0 comments on commit 49ba203

Please sign in to comment.