package com.ruoyi.productionPlan.controller;
|
|
import io.swagger.annotations.Api;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <p>
|
* 销售发货明细(宜搭) 前端控制器
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-03-19 11:49:57
|
*/
|
@RestController
|
@RequestMapping("/salesDelivery")
|
@Api(tags = "销售发货明细")
|
public class SalesDeliveryController {
|
|
}
|