服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-07-12 53171273a4cd9049d532f031f389364982d219d7
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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model.Entitys.MES.Position
{
    public class NewPositionInput
    {
        public string USER_CODE { get; set; }
        public string POST_CODE { get; set; }
    }
 
    public class WoInput : ApiInput
    {
        public string OrderNo { get; set; }
    }
 
    public class SnInput : ApiInput
    {
        public string SN { get; set; }
        public string DFT_CODE { get; set; }
    }
 
    public class DefectOutput
    {
        public string DFTG_CODE { get; set; }
        public string DFTG_NAME { get; set; }
        public string DFT_CODE { get; set; }
        public string DFT_NAME { get; set; }
        public int DFT_LEVEL { get; set; }
    }
}