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

修改 @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/16 17:20
* @since 2023/9/16 17:20
*/
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)//取消数据源自动配置
@EnableDiscoveryClient

View File

@@ -5,7 +5,7 @@ package com.yovinchen.xlcs.search.api;
* Package: com.yovinchen.xlcs.search.api
*
* @author yovinchen
* @Create 2023/9/26 14:21
* @since 2023/9/26 14:21
*/
public class SearchApiController {
}

View File

@@ -22,7 +22,7 @@ import java.util.List;
* Package: com.yovinchen.xlcs.search.controller
*
* @author yovinchen
* @Create 2023/9/16 17:22
* @since 2023/9/16 17:22
*/
@RestController
@RequestMapping("api/search/sku")

View File

@@ -1,8 +1,8 @@
package com.yovinchen.xlcs.search.receiver;
import com.rabbitmq.client.Channel;
import com.yovinchen.xlcs.mq.constant.MqConst;
import com.yovinchen.xlcs.search.service.SkuService;
import com.rabbitmq.client.Channel;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.Exchange;
import org.springframework.amqp.rabbit.annotation.Queue;
@@ -18,7 +18,7 @@ import java.io.IOException;
* Package: com.yovinchen.xlcs.search.receiver
*
* @author yovinchen
* @Create 2023/9/16 23:57
* @since 2023/9/16 23:57
*/
@Component
public class SkuReceiver {

View File

@@ -11,7 +11,7 @@ import org.springframework.data.elasticsearch.repository.ElasticsearchRepository
* Package: com.yovinchen.xlcs.search.repository
*
* @author yovinchen
* @Create 2023/9/16 17:24
* @since 2023/9/16 17:24
*/
public interface SkuRepository extends ElasticsearchRepository<SkuEs, Long> {
//获取爆款商品

View File

@@ -13,7 +13,7 @@ import java.util.List;
* Package: com.yovinchen.xlcs.search.service
*
* @author yovinchen
* @Create 2023/9/16 17:23
* @since 2023/9/16 17:23
*/
@Service

View File

@@ -32,7 +32,7 @@ import java.util.stream.Collectors;
* Package: com.yovinchen.xlcs.search.service.impl
*
* @author yovinchen
* @Create 2023/9/16 17:23
* @since 2023/9/16 17:23
*/
@Slf4j
@Service