服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-01-15 a3b21ee43b13ad79302aceb9a68405b45e6467a4
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model.Minsun;
 
namespace Tiger.Model
{
    public class TemplateInput
    {
        /// <summary>
        /// 
        /// </summary>
        public string custCode { get; set; }
        public string itemCode { get; set; }
        public string sapItemCode { get; set; }
        public string itemDesc { get; set; }
        public string WoBatch { get; set; }
        public decimal batchQty { get; set; }
        public decimal qty { get; set; }
        public string qrCode { get; set; }
    }
}