css
liuying
2024-04-25 264795ac21be1ef5e36ec431005acb84777dad79
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);
    }
}