调整注释

This commit is contained in:
mofung1 2023-03-21 16:38:31 +08:00
parent 55436c011a
commit 694e1ee37f
1 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
* @param timestamp 时间戳 * @param timestamp 时间戳
* @param nonce 随机数 * @param nonce 随机数
* @param echostr 随机字符串 * @param echostr 随机字符串
* @return * @return String
*/ */
@Override @Override
public String checkSignature(String signature, String timestamp, String nonce, String echostr) { public String checkSignature(String signature, String timestamp, String nonce, String echostr) {
@ -53,7 +53,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
* @param nonce 随机数 * @param nonce 随机数
* @param encType 加密类型 * @param encType 加密类型
* @param msgSignature 加密签名 * @param msgSignature 加密签名
* @return * @return String
*/ */
@Override @Override
public String post(String requestBody, String signature, String timestamp, String nonce, String encType, String msgSignature) { public String post(String requestBody, String signature, String timestamp, String nonce, String encType, String msgSignature) {
@ -96,7 +96,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
* 消息处理 * 消息处理
* *
* @param wxMessage 微信回调信息 * @param wxMessage 微信回调信息
* @return * @return WxMpXmlOutMessage
*/ */
private WxMpXmlOutMessage msgHandler(WxMpXmlMessage wxMessage) { private WxMpXmlOutMessage msgHandler(WxMpXmlMessage wxMessage) {
try { try {
@ -125,7 +125,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
* *
* @param content 文本内容 * @param content 文本内容
* @param wxMessage 微信回调信息 * @param wxMessage 微信回调信息
* @return * @return WxMpXmlOutMessage
*/ */
private WxMpXmlOutMessage textBuild(String content, WxMpXmlMessage wxMessage) { private WxMpXmlOutMessage textBuild(String content, WxMpXmlMessage wxMessage) {
return WxMpXmlOutMessage.TEXT().content(content) return WxMpXmlOutMessage.TEXT().content(content)
@ -137,7 +137,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
* 关键词回复 * 关键词回复
* *
* @param wxMessage 微信回调信息 * @param wxMessage 微信回调信息
* @return * @return String
*/ */
private String keyMsg(WxMpXmlMessage wxMessage) { private String keyMsg(WxMpXmlMessage wxMessage) {
List<OfficialReply> oaReplyList = officialReplyMapper.selectList( List<OfficialReply> oaReplyList = officialReplyMapper.selectList(
@ -165,7 +165,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
/** /**
* 默认回复 * 默认回复
* *
* @return * @return String
*/ */
private String defaultMsg() { private String defaultMsg() {
OfficialReply officialReply = officialReplyMapper.selectOne(new QueryWrapper<OfficialReply>() OfficialReply officialReply = officialReplyMapper.selectOne(new QueryWrapper<OfficialReply>()
@ -182,7 +182,7 @@ public class ChannelOaCallBackServiceImpl implements IChannelOaCallBackService {
/** /**
* 关注回复内容 * 关注回复内容
* *
* @return * @return String
*/ */
private String subMsg() { private String subMsg() {
OfficialReply officialReply = officialReplyMapper.selectOne(new QueryWrapper<OfficialReply>() OfficialReply officialReply = officialReplyMapper.selectOne(new QueryWrapper<OfficialReply>()