feat: 发送短信适配 ContiNew Starter 行为验证码

This commit is contained in:
Bull-BCLS
2023-12-28 23:47:44 +08:00
parent dea64e62e1
commit eab53520c8
27 changed files with 1409 additions and 40 deletions

View File

@@ -22,7 +22,7 @@ import lombok.RequiredArgsConstructor;
/**
* 消息模板枚举
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:51
*/
@Getter

View File

@@ -29,7 +29,7 @@ import top.charles7c.continew.starter.data.mybatis.plus.base.BaseMapper;
/**
* 消息 Mapper
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
public interface MessageMapper extends BaseMapper<MessageDO> {

View File

@@ -24,7 +24,7 @@ import top.charles7c.continew.starter.data.mybatis.plus.base.BaseMapper;
/**
* 消息和用户 Mapper
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 20:25
*/
public interface MessageUserMapper extends BaseMapper<MessageUserDO> {

View File

@@ -32,7 +32,7 @@ import top.charles7c.continew.admin.common.enums.MessageTypeEnum;
/**
* 消息实体
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
@Data

View File

@@ -26,7 +26,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
/**
* 消息和用户关联实体
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 20:25
*/
@Data

View File

@@ -28,7 +28,7 @@ import top.charles7c.continew.starter.data.mybatis.plus.query.QueryType;
/**
* 消息查询条件
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
@Data

View File

@@ -33,7 +33,7 @@ import top.charles7c.continew.starter.extension.crud.base.BaseReq;
/**
* 创建消息信息
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
@Data

View File

@@ -31,7 +31,7 @@ import top.charles7c.continew.admin.common.enums.MessageTypeEnum;
/**
* 消息信息
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
@Data

View File

@@ -27,7 +27,7 @@ import top.charles7c.continew.starter.extension.crud.model.resp.PageDataResp;
/**
* 消息业务接口
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
public interface MessageService {

View File

@@ -23,7 +23,7 @@ import top.charles7c.continew.admin.system.model.resp.MessageUnreadResp;
/**
* 消息和用户关联业务接口
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
public interface MessageUserService {

View File

@@ -47,7 +47,7 @@ import top.charles7c.continew.starter.extension.crud.model.resp.PageDataResp;
/**
* 消息业务实现
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
@Service

View File

@@ -38,7 +38,7 @@ import top.charles7c.continew.starter.core.util.validate.CheckUtils;
/**
* 消息和用户关联业务实现
*
* @author BULL_BCLS
* @author Bull-BCLS
* @since 2023/10/15 19:05
*/
@Service