服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-07-14 507be0f76a93abfd825ce7fbf192cc098b978f10
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
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 SubmitInput : ApiInput
    {
        public int CurStep { get; set; }
        public string StepID { get; set; }
        public string SN { get; set; }
        public string DFT_CODE { get; set; }
        public string Data { get; set; }
    }
 
    public class SubmitOutput
    {
        public bool IsFinished { get; set; }
        public int CurStep { get; set; }
        public string StepID { get; set; }
        public string StepActCode { get; set; }
        public object Data { 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; }
    }
}