出库单

This commit is contained in:
18942506660
2023-10-28 09:41:03 +08:00
parent cb2a4cde18
commit f75aafdd35
10 changed files with 180 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WMS.Web.Api.Controllers
{
/// <summary>
/// 出库计划单
/// </summary>
[Route("api/[controller]")]
[ApiController]
public class OutStockTaskController : ControllerBase
{
}
}