refactor: 项目结构调整和相关代码优化
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.member.controller;
|
||||
|
||||
/**
|
||||
* 会员控制层-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class MemberController {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.member.mapper;
|
||||
|
||||
/**
|
||||
* 会员数据访问层-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class MemberMapper {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.member.model;
|
||||
|
||||
/**
|
||||
* 会员实体-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class Member {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.member.service;
|
||||
|
||||
/**
|
||||
* 会员管理服务类-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class MemberService {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.order.controller;
|
||||
|
||||
/**
|
||||
* 订单控制层-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class OrderController {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.order.mapper;
|
||||
|
||||
/**
|
||||
* 订单数据访问层-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class OrderMapper {
|
||||
}
|
||||
10
src/main/java/com/youlai/boot/modules/order/model/Order.java
Normal file
10
src/main/java/com/youlai/boot/modules/order/model/Order.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.order.model;
|
||||
|
||||
/**
|
||||
* 订单实体-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class Order {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.order.service;
|
||||
|
||||
/**
|
||||
* 订单管理服务类-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class OrderService {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.product.controller;
|
||||
|
||||
/**
|
||||
* 商品控制层-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class ProductController {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.product.mapper;
|
||||
|
||||
/**
|
||||
* 商品数据访问层-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class ProductMapper {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.product.model;
|
||||
|
||||
/**
|
||||
* 商品实体-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class Product {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.youlai.boot.modules.product.service;
|
||||
|
||||
/**
|
||||
* 会员管理服务类-业务模块演示
|
||||
*
|
||||
* @author haoxr
|
||||
* @since 2024/10/10
|
||||
*/
|
||||
public class ProductService {
|
||||
}
|
||||
Reference in New Issue
Block a user