修改角色管理中权限分配 新增登录日志表
修改 @Create 标识为 @since
This commit is contained in:
		@@ -11,7 +11,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients;
 | 
			
		||||
 * Package: com.yovinchen.xlcs
 | 
			
		||||
 *
 | 
			
		||||
 * @author yovinchen
 | 
			
		||||
 * @Create 2023/10/8 22:26
 | 
			
		||||
 * @since 2023/10/8 22:26
 | 
			
		||||
 */
 | 
			
		||||
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)//取消数据源自动配置
 | 
			
		||||
@EnableDiscoveryClient
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@ import java.util.List;
 | 
			
		||||
 * Package: com.yovinchen.xlcs.cart.cart.controller
 | 
			
		||||
 *
 | 
			
		||||
 * @author yovinchen
 | 
			
		||||
 * @Create 2023/10/8 22:32
 | 
			
		||||
 * @since 2023/10/8 22:32
 | 
			
		||||
 */
 | 
			
		||||
@RestController
 | 
			
		||||
@RequestMapping("/api/cart")
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
package com.yovinchen.xlcs.cart.receiver;
 | 
			
		||||
 | 
			
		||||
import com.rabbitmq.client.Channel;
 | 
			
		||||
import com.yovinchen.xlcs.cart.service.CartInfoService;
 | 
			
		||||
import com.yovinchen.xlcs.mq.constant.MqConst;
 | 
			
		||||
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.cart.cart.receiver
 | 
			
		||||
 *
 | 
			
		||||
 * @author yovinchen
 | 
			
		||||
 * @Create 2023/10/13 08:56
 | 
			
		||||
 * @since 2023/10/13 08:56
 | 
			
		||||
 */
 | 
			
		||||
@Component
 | 
			
		||||
public class CartReceiver {
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@ import java.util.List;
 | 
			
		||||
 * Package: com.yovinchen.xlcs.cart.cart.service
 | 
			
		||||
 *
 | 
			
		||||
 * @author yovinchen
 | 
			
		||||
 * @Create 2023/10/8 22:33
 | 
			
		||||
 * @since 2023/10/8 22:33
 | 
			
		||||
 */
 | 
			
		||||
public interface CartInfoService {
 | 
			
		||||
    /**
 | 
			
		||||
 
 | 
			
		||||
@@ -26,7 +26,7 @@ import java.util.stream.Collectors;
 | 
			
		||||
 * Package: com.yovinchen.xlcs.cart.cart.service.impl
 | 
			
		||||
 *
 | 
			
		||||
 * @author yovinchen
 | 
			
		||||
 * @Create 2023/10/8 22:34
 | 
			
		||||
 * @since 2023/10/8 22:34
 | 
			
		||||
 */
 | 
			
		||||
@Service
 | 
			
		||||
public class CartInfoServiceImpl implements CartInfoService {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user