活动团创建
This commit is contained in:
parent
a5ffe4348e
commit
b41f845689
|
|
@ -312,6 +312,8 @@ public class ShiroConfig
|
|||
filterChainDefinitionMap.put("/app/matchOrder/**", "anon");
|
||||
// app合伙人推荐接口
|
||||
filterChainDefinitionMap.put("/app/match/**", "anon");
|
||||
// app合伙人活动团
|
||||
filterChainDefinitionMap.put("/app/matchGroup/**", "anon");
|
||||
// 系统权限列表
|
||||
// filterChainDefinitionMap.putAll(SpringUtils.getBean(IMenuService.class).selectPermsAll());
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
|
@ -23,6 +25,7 @@ public class TbUserMatchGroup extends BaseEntity
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键id */
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/** 合伙人id */
|
||||
|
|
|
|||
Loading…
Reference in New Issue