yudao-module-wechat-mp 模块合并到 yudao-module-wechat 模块 中

weixin-java-mp 更新为 最新正式版本 4.3.0
This commit is contained in:
fengdan
2022-06-02 00:19:23 +08:00
parent fabf9693bf
commit 2aec04a888
53 changed files with 182 additions and 320 deletions

View File

@ -0,0 +1,16 @@
package cn.iocoder.yudao.module.mp.enums;
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
/**
* Member 错误码枚举类
*
* wechatMp 系统,使用 1-004-000-000 段
*/
public interface ErrorCodeConstants {
// ========== 用户相关 1004001000============
ErrorCode WX_ACCOUNT_NOT_EXISTS = new ErrorCode(1004001000, "用户不存在");
ErrorCode WX_ACCOUNT_FANS_NOT_EXISTS = new ErrorCode(1004001000, "用户不存在");
}

View File

@ -0,0 +1,8 @@
/**
* mp 模块,我们放微信微信公众号。
* 例如说:提供微信公众号的账号、菜单、粉丝、标签、消息、自动回复、素材、模板通知、运营数据等功能
*
* 1. Controller URL以 /mp/ 开头,避免和其它 Module 冲突
* 2. DataObject 表名:以 mp_ 开头,方便在数据库中区分
*/
package cn.iocoder.yudao.module.mp;