配置提交

This commit is contained in:
2025-06-20 09:10:53 +08:00
parent f03622ac5b
commit ed54f79983
11 changed files with 39 additions and 19 deletions

View File

@@ -1,11 +1,13 @@
package com.njcn.gather.event;
import lombok.extern.slf4j.Slf4j;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@Slf4j
@SpringBootApplication
@MapperScan("com.njcn.**.mapper")
public class EventSmartApplication {
public static void main(String[] args) {

View File

@@ -1,7 +1,7 @@
package com.njcn.gather.event.mapper;
package com.njcn.gather.event.transientes.mapper;
import com.github.jeffreyning.mybatisplus.base.MppBaseMapper;
import com.njcn.gather.event.pojo.po.PqsEventdetailPO;
import com.njcn.gather.event.transientes.pojo.po.PqsEventdetailPO;
import org.apache.ibatis.annotations.Mapper;
@Mapper

View File

@@ -1,7 +1,7 @@
package com.njcn.gather.event.mapper;
package com.njcn.gather.event.transientes.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.gather.event.pojo.po.RmpEventDetailPO;
import com.njcn.gather.event.transientes.pojo.po.RmpEventDetailPO;
import org.apache.ibatis.annotations.Mapper;
@Mapper

View File

@@ -1,4 +1,4 @@
package com.njcn.gather.event.pojo.po;
package com.njcn.gather.event.transientes.pojo.po;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;

View File

@@ -1,4 +1,4 @@
package com.njcn.gather.event.pojo.po;
package com.njcn.gather.event.transientes.pojo.po;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;

View File

@@ -1,4 +1,4 @@
package com.njcn.gather.event.websocket;
package com.njcn.gather.event.transientes.websocket;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@@ -1,4 +1,4 @@
package com.njcn.gather.event.websocket;
package com.njcn.gather.event.transientes.websocket;
import lombok.extern.slf4j.Slf4j;