购买解决框架
parent
3c72e49be8
commit
0aed87c444
|
@ -0,0 +1,18 @@
|
|||
package com.muyu.system.controller;
|
||||
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @Author:chaiyapeng
|
||||
* @Package:com.muyu.system.controller
|
||||
* @Project:cloud-system
|
||||
* @name:BuyInterface
|
||||
* @Date:2024/9/1 14:37
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/buy")
|
||||
@Tag(name = "BuyMapper", description = "购买接口")
|
||||
public class BuyInterface {
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
package com.muyu.system.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.muyu.system.domain.Connector;
|
||||
|
||||
/**
|
||||
* @Author:chaiyapeng
|
||||
* @Package:com.muyu.system.mapper
|
||||
* @Project:cloud-system
|
||||
* @name:BuyInterface
|
||||
* @Date:2024/9/1 14:38
|
||||
* 购买接口
|
||||
*/
|
||||
public interface BuyMapper extends BaseMapper<Connector> {
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
package com.muyu.system.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.muyu.system.domain.Connector;
|
||||
|
||||
/**
|
||||
* @Author:chaiyapeng
|
||||
* @Package:com.muyu.system.service
|
||||
* @Project:cloud-system
|
||||
* @name:BuyService
|
||||
* @Date:2024/9/1 14:40
|
||||
* 购买接口
|
||||
*/
|
||||
public interface BuyService extends IService<Connector> {
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
package com.muyu.system.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.muyu.system.domain.Connector;
|
||||
import com.muyu.system.mapper.BuyMapper;
|
||||
import com.muyu.system.service.BuyService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @Author:chaiyapeng
|
||||
* @Package:com.muyu.system.service.impl
|
||||
* @Project:cloud-system
|
||||
* @name:BuyServiceImpl
|
||||
* @Date:2024/9/1 14:40
|
||||
* 购买接口
|
||||
*/
|
||||
@Service
|
||||
public class BuyServiceImpl extends ServiceImpl<BuyMapper, Connector> implements BuyService {
|
||||
}
|
Loading…
Reference in New Issue