服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-07-24 4651b8084dff20870148cc9f9c521d777a78ffb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Model
{
    public class RouteInput
    {
        public string rotId { get; set; }
        public string rotCode { get; set; }
    }
 
    public class DelProdRotInput : RouteInput
    {
        public string prodCode { get; set; }
    }
 
    public class DelWoRotInput : RouteInput
    {
        public string wo { get; set; }
    }
}