服务端的TigerApi 框架,基于.NET6 2024 版本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Tiger.Business.WMS;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.Business.WMS.Tests
{
    [TestClass()]
    public class CommonTests
    {
        [TestMethod()]
        public void AnalyseTest()
        {
            var b = new Barcode("4100-CA1010-T7#202405#1251#0002#10000");
            var b1 = new Barcode("YDASN241000427/10/10090402.0024.00/ASN241000427/42");
            ;
        }
    }
}