add 接口模块
parent
7b44f491bb
commit
f402ce6df4
@ -1,11 +1,11 @@
|
||||
package controller;
|
||||
package com.bgs.webapi.controller;
|
||||
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import seervice.LoginService;
|
||||
import com.bgs.webapi.service.LoginService;
|
||||
|
||||
/**
|
||||
* Created by wangh on 2020/7/17-15:18。
|
@ -1,4 +1,4 @@
|
||||
package mapper;
|
||||
package com.bgs.webapi.mapper;
|
||||
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
@ -1,8 +1,8 @@
|
||||
package seervice;
|
||||
package com.bgs.webapi.service;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
|
||||
import mapper.LoginMapper;
|
||||
import com.bgs.webapi.mapper.LoginMapper;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
Loading…
Reference in New Issue