Blame view

src/main/java/com/order/erp/controller/OrderOptLogController.java 428 Bytes
“谢茂盛” authored
1
2
package com.order.erp.controller;
谢茂盛 authored
3
import io.swagger.annotations.Api;
“谢茂盛” authored
4
5
6
7
8
9
10
11
12
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 用户订单操作日志表(OrderOptLog)表控制层
 *
 * @author makejava
 * @since 2023-09-08 15:26:46
 */
谢茂盛 authored
13
@Api(tags = "(忽略)")
“谢茂盛” authored
14
15
16
17
18
19
@RestController
@RequestMapping("/gwms/xxx")
public class OrderOptLogController {

}