业务逻辑

Aaaaaaaa 2024-08-23 10:34:03 +08:00
parent 439d00acf1
commit 011762495d
21 changed files with 20416 additions and 22 deletions

View File

@ -0,0 +1,13 @@
package com.muyu.cloud.market.controller;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Log4j2
@RestController
@RequestMapping("/orders")
@Tag(name = "运营商控制层", description = "进行订单支付所用运营商管理")
public class OperatorsController {
}

View File

@ -0,0 +1,13 @@
package com.muyu.cloud.market.controller;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Log4j2
@RestController
@RequestMapping("/orders")
@Tag(name = "订单支付控制层", description = "进行订单支付管理")
public class OrdersPayController {
}

View File

@ -0,0 +1,16 @@
package com.muyu.cloud.market.controller;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Log4j2
@RestController
@RequestMapping("/orders")
@Tag(name = "账户充值控制层", description = "进行账户充值管理")
public class RechargeController {
}

View File

@ -0,0 +1,14 @@
package com.muyu.cloud.market.controller;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Log4j2
@RestController
@RequestMapping("/orders")
@Tag(name = "购买记录控制层", description = "进行订单购买日志管理")
public class SalelogController {
}

View File

@ -0,0 +1,7 @@
package com.muyu.cloud.market.mapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface OperatorsMapper {
}

View File

@ -66,6 +66,17 @@ public interface OrderShowMapper {
Orders findAllById (Integer ordersId); Orders findAllById (Integer ordersId);
/**
* (),
* ,
*/
/**
* ,
*/
} }

View File

@ -0,0 +1,7 @@
package com.muyu.cloud.market.mapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface OrdersPayMapper {
}

View File

@ -1,22 +0,0 @@
package com.muyu.cloud.market.mapper;
import org.apache.ibatis.annotations.Mapper;
/**
* 使
*/
@Mapper
public interface OrdersProductMapper {
/**
* ,
*/
/**
* ,
*/
/**
*
*/
}

View File

@ -0,0 +1,7 @@
package com.muyu.cloud.market.mapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface RechargeMapper {
}

View File

@ -0,0 +1,7 @@
package com.muyu.cloud.market.mapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface SalelogMapper {
}

View File

@ -0,0 +1,4 @@
package com.muyu.cloud.market.service;
public interface OperatorsService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.cloud.market.service;
public interface OrdersPayService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.cloud.market.service;
public interface RechargeService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.cloud.market.service;
public interface SalelogService {
}

View File

@ -6,6 +6,7 @@ import com.muyu.cloud.market.domin.Customer;
import com.muyu.cloud.market.domin.resp.CustomerListResp; import com.muyu.cloud.market.domin.resp.CustomerListResp;
import com.muyu.cloud.market.mapper.FindCustomerMeaasgeMapper; import com.muyu.cloud.market.mapper.FindCustomerMeaasgeMapper;
import com.muyu.cloud.market.service.FindCustomerMeaasgeService; import com.muyu.cloud.market.service.FindCustomerMeaasgeService;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -17,6 +18,7 @@ import org.springframework.stereotype.Service;
* @Date2024/8/20 9:51 * @Date2024/8/20 9:51
*/ */
@Service @Service
@Log4j2
public class FindCustomerMeaasgeServiceImpl extends ServiceImpl<FindCustomerMeaasgeMapper,Customer> implements FindCustomerMeaasgeService { public class FindCustomerMeaasgeServiceImpl extends ServiceImpl<FindCustomerMeaasgeMapper,Customer> implements FindCustomerMeaasgeService {
/** /**

View File

@ -0,0 +1,10 @@
package com.muyu.cloud.market.service.impl;
import com.muyu.cloud.market.service.OperatorsService;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
@Service
@Log4j2
public class OperatorsServiceImpl implements OperatorsService {
}

View File

@ -0,0 +1,8 @@
package com.muyu.cloud.market.service.impl;
import com.muyu.cloud.market.service.OrdersPayService;
import org.springframework.stereotype.Service;
@Service
public class OrdersPayServiceImpl implements OrdersPayService {
}

View File

@ -0,0 +1,10 @@
package com.muyu.cloud.market.service.impl;
import com.muyu.cloud.market.service.RechargeService;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
@Service
@Log4j2
public class RechargeServiceImpl implements RechargeService {
}

View File

@ -0,0 +1,10 @@
package com.muyu.cloud.market.service.impl;
import com.muyu.cloud.market.service.SalelogService;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
@Service
@Log4j2
public class SalelogServiceImpl implements SalelogService {
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff