服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-04-18 c3bb5047c194a0145caca7681f0df5a8feeaaa9b
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
  "ScanItem": {
    //"GetSuccess": {
    //  "en": "Get barcode[{0}] inventory information success",
    //  "zh-CN": "获取条码[{0}]库存信息成功"
    //},
    //"GetUnPackSuccess": {
    //  "en": "Get barcode[{0}] inventory information success, and do unpack from its packaging [{1}]",
    //  "zh-CN": "解除与父包装条码[{1}]关系后,获取条码[{0}]库存信息成功"
    //},
    "NotFound": {
      "en": "Can not found the item code[{0}] information, please scan again",
      "zh-CN": "未找到物料[{0}]的信息,请重新扫描"
    },
    "NotQrCode": {
      "en": "The scanned barcode[{0}] is not a QR code, please rescan",
      "zh-CN": "扫描的条码[{0}]不是二维码,请重新扫描"
    },
    "ExistItem": {
      "en": "Barcode[{0}] has been in store or checked, Do not allow duplicate scanning for storage",
      "zh-CN": "条码[{0}]已经入过库或者已清点过,不允许重复扫描入库"
    },
    "NotExist": {
      "en": "Warehouse[{0}] does not exists",
      "zh-CN": "库位[{0}]不存在"
    },
    "WhExist": {
      "en": "Warehouse[{0}] already scanned, please scan the material qr code",
      "zh-CN": "库位[{0}]已经扫描,请扫描物料二维码"
    },
    "SnEmptyFailure": {
      "en": "Barcode cannot be empty",
      "zh-CN": "条码不能为空"
    },
    "WhEmptyFailure": {
      "en": "Warehouse cannot be empty",
      "zh-CN": "库位不能为空"
    },
    "LocationEmptyFailure": {
      "en": "Location cannot be empty",
      "zh-CN": "储位不能为空"
    },
    "LocationSingleFailure": {
      "en": "Only one materail can be stored in this location",
      "zh-CN": "储位只能单放一个物料"
    },
    "ShelfEmptyFailure": {
      "en": "Shelf cannot be empty",
      "zh-CN": "货架不能为空"
    },
    "BarcodeCounted": {
      "en": "The barcode has been counted",
      "zh-CN": "条码已做过清点"
    },
    "GetException": {
      "en": "Get barcode[{0}] inventory information exception",
      "zh-CN": "获取条码[{0}]库存信息异常"
    },
    "ScanException": {
      "en": "Scan barcode[{0}] review exception",
      "zh-CN": "扫描物料[{0}]复核异常"
    },
    "NotDataToSubmit": {
      "en": "There is no data to submit",
      "zh-CN": "没有可以提交的清点数据"
    },
    "NotAllowIn": {
      "en": "Do not allow split label to do counting, please scan again",
      "zh-CN": "拆分截料的标签不能清点,请重新扫描"
    },
    "GetWhSuccess": {
      "en": "Get warehouse code {0} success",
      "zh-CN": "返回仓库[{0}]成功!"
    },
    "CountSuccess": {
      "en": "The barcode[{0}] count success",
      "zh-CN": "条码[{0}]清点成功!"
    },
    "ShelfCanNotEmpty": {
      "en": "Please enter or scan a valid shelf/location code",
      "zh-CN": "请输入或扫描有效的货架/储位码"
    },
    "ShelfOrLocationDisabled": {
      "en": "The scanned storage location is disabled",
      "zh-CN": "扫描的库位未启用"
    },
    "StatusException": {
      "en": "Status [{0}] exception, please scan again",
      "zh-CN": "状态[{0}]异常,请重新扫描"
    },
    "NotCounted": {
      "en": "The barcode [{0}] do not count, can not in store",
      "zh-CN": "此物料条码[{0}]未做清点,不能入库"
    },
    "NotGenerateBill": {
      "en": "The barcode [{0}] do not generate bill number, can not in store",
      "zh-CN": "此物料条码[{0}]未生成库存单据,不能入库"
    },
    "DiffQty": {
      "en": "The barcode [{0}] quantity received is different from the counted quantity , can not in store",
      "zh-CN": "此物料条码[{0}]入库数量与清点数量不同,不能入库"
    }
  }
}