schangxiang@126.com
2024-04-25 0e394ed580b09329ecaa8476bbb6334f8212b009
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Admin.NET.Core;
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
 
namespace Admin.NET.Application
{
    public interface IWmsCommonService
    {
        /// <summary>
        /// 获取通用编号
        /// </summary>
        /// <returns></returns>
        Task<string> GetSerial([FromQuery] EnumSerialType SerialType);
    }
}