Compare commits

..

No commits in common. "fe00aae291776ab8bc23e74dc71df923abf30740" and "4fe40b47fb40e9fe03fae60d402f63491f8913d9" have entirely different histories.

2 changed files with 1 additions and 19 deletions

View File

@ -23,6 +23,7 @@ public class InvitationController {
@GetMapping("/getInvitationCode")
@Anonymous
public AjaxResult getInvitationCode() {
// 获取当前用户
Long userId = SecurityUtils.getUserId();

View File

@ -83,22 +83,3 @@ wechat:
appid: wx82d4c3c96f0ffa5b
# 应用密钥
secret: abbabcf1da711a3bbd95387ec83edcac
mybatis-plus:
# Mapper XML文件位置
mapper-locations: classpath:mapper/**/*.xml
# 配置实体类所在的包名MyBatis-Plus会自动扫描并注册为别名
type-aliases-package: com.mcwl.**.mapper
# 全局配置
global-config:
db-config:
# 主键生成策略
id-type: auto
# 开启驼峰命名规则转换
capital-mode: true
# 配置逻辑删除相关属性
logic-delete-field: del_flag
logic-delete-value: '2'
logic-not-delete-value: '0'
# 数据库字段下划线命名规则
table-underline: true