服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
7 天以前 8bda6bb83d2ebcf25c3ced361fdd97219bf615f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model;
using Tiger.Model.Minsun;
 
namespace Tiger.IBusiness
{
    public interface IErpT100
    {
        /// <summary>
        /// 从T100获取二级供应商接口返回iDropdownlist列表
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public List<iDropdownlist> GetSecondarySupplyInfoToDDL(SupplierInputParameter input);
        /// <summary>
        /// 根据领料单号拉单身
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public T100ActionResult<resultStd_data<reqParameter1>> GetMaterialReqDetail(ReqInputParameter input);
        /// <summary>
        /// 从T100获取供应商接口
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public T100ActionResult<resultStd_data<VenderParameterR>> GetVenderInfo(VenderInputParameter input);
        public ApiAction GetVenderInfoToDDL(iVenderParams input);
    }
}