package com.jilongda.manage.controller; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 销售订单表 前端控制器 *
* * @author 无关风月 * @since 2024-12-09 */ @Api(tags = "") @RestController @RequestMapping("/t-order") public class TOrderController { }