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