服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
5 天以前 beca28ecb3a730ffb33c21e0c55c729774725faf
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model.Sharetronic.Shelf;
 
namespace Tiger.Model
{
    public class LightEntityInput
    {
        public AuthOption AuthOption { get; set; }
        public ReqType ReqType { get; set; }
        public LedColor Color { get; set; }
        public string ItemCode { get; set; }
    }
 
    public class CountLightEntity
    {
        public AuthOption AuthOption { get; set; }
        public ReqType ReqType { get; set; }
        public LedColor Color { get; set; }
        public string ItemCode { get; set; }
        public string ShelfCode { get; set; }
    }
 
    /// <summary>
    /// 
    /// </summary>
    public class CountOutput
    {
        public string CountNo { get; set; }
        public string SN { get; set; }
        public string ItemCode { get; set; }
        public string ItemName { get; set; }
        public string ItemDesc { get; set; }
        public double Qty { get; set; }
        public string regionCode { get; set; }
        public string locationCode { get; set; }
        public string Unit { get; set; }
        public string Status { get; set; }
        public List<ShelfDropDown> Shelfs { get; set; }
    }
 
    public class LightEntityInputs
    {
        public AuthOption AuthOption { get; set; }
        public ReqType ReqType { get; set; }
        public LedColor Color { get; set; }
        public List<string> ItemCodes { get; set; }
    }
}