服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-04-06 d2f14f6bb44c6dd19cc0816a033452b6de56184b
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
35
36
37
38
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class CountEntity: BasePageInput
    {
        public string CountNo { get; set; }
    }
 
    public class CountPageReturn<T> : BasePageOutput<T>
    {
        public string Status { get; set; }
    }
 
    public class CountEntityReturn
    {
        public string CountNo { get; set; }
        //public List<WMS_SHELF> Shelfs { get; set; }
        public List<ShelfDropDown> Shelfs { get; set; }
        public string ItemCode { get; set; }
        public string ItemName { get; set; }
        public string ItemDesc { get; set; }
        public int COUNT_TYPE { get; set; }
        public WMS_WAREHOUSE Warehouse { get; set; }
        public List<WMS_LOCATION> locations { get; set; }
    }
 
    public class ShelfDropDown
    {
        public string SHELF_CODE { get; set; }
        public string SHELF_NAME { get; set; }
    }
}