服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-06 27f9d29760ee5457d7c0cb9e12cacab33c08eaea
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class InReceiptCheckingInput: BaseInput
    {
        public string WarehouseCode { get; set; }
        /// <summary>
        /// 二级供应商代码
        /// </summary>
        public string SecondSuppCode { get; set; }
 
        public string LotNo { get; set; }
    }
 
    public class InReceiptInInput
    {
        public AuthOption AuthOption { get; set; }
        public string SN { get; set; }
        public int ReqType { get; set; }
    }
}