修改角色管理中权限分配 新增登录日志表

修改 @Create 标识为 @since
This commit is contained in:
2024-01-24 17:03:32 +08:00
parent 39d46336f7
commit 0d2680a3a2
116 changed files with 339 additions and 197 deletions

View File

@@ -11,7 +11,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients;
* Package: com.yovinchen.xlcs
*
* @author yovinchen
* @Create 2023/9/25 12:06
* @since 2023/9/25 12:06
*/
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)//取消数据源自动配置
@EnableDiscoveryClient

View File

@@ -13,7 +13,7 @@ import java.util.concurrent.TimeUnit;
* Package: com.yovinchen.xlcs.home.config
*
* @author yovinchen
* @Create 2023/10/8 14:47
* @since 2023/10/8 14:47
*/
@Configuration

View File

@@ -22,7 +22,7 @@ import java.util.Map;
* Package: com.yovinchen.xlcs.home.controller
*
* @author yovinchen
* @Create 2023/9/25 12:10
* @since 2023/9/25 12:10
*/
@Api(tags = "首页接口")

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* Package: com.yovinchen.xlcs.home.service
*
* @author yovinchen
* @Create 2023/9/25 12:12
* @since 2023/9/25 12:12
*/
public interface HomeService {
/**

View File

@@ -7,7 +7,7 @@ import java.util.Map;
* Package: com.yovinchen.xlcs.home.service
*
* @author yovinchen
* @Create 2023/10/7 15:01
* @since 2023/10/7 15:01
*/
public interface ItemService {
/**

View File

@@ -20,7 +20,7 @@ import java.util.Map;
* Package: com.yovinchen.xlcs.home.service.impl
*
* @author yovinchen
* @Create 2023/9/25 12:12
* @since 2023/9/25 12:12
*/
@Service
public class HomeServiceImpl implements HomeService {

View File

@@ -19,7 +19,7 @@ import java.util.concurrent.ThreadPoolExecutor;
* Package: com.yovinchen.xlcs.home.service.impl
*
* @author yovinchen
* @Create 2023/10/7 15:02
* @since 2023/10/7 15:02
*/
@Service
public class ItemServiceImpl implements ItemService {