FoodLabeling.Application.Contracts.xml
106 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
<?xml version="1.0"?>
<doc>
<assembly>
<name>FoodLabeling.Application.Contracts</name>
</assembly>
<members>
<member name="T:FoodLabeling.Application.Contracts.Dtos.AuthSession.CurrentUserBriefDto">
<summary>
当前登录用户简要信息(不含敏感字段)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.AuthSession.CurrentUserMenuNodeDto">
<summary>
当前用户可见菜单树节点(与权限分配一致)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.AuthSession.CurrentUserMenuPermissionsOutputDto">
<summary>
当前登录用户的菜单与权限码(用于前端动态路由/按钮权限)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Common.PagedResultWithPageDto`1">
<summary>
分页返回(包含当前页、总页数)
</summary>
<typeparam name="TItem">列表项类型</typeparam>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Common.PagedResultWithPageDto`1.PageIndex">
<summary>
当前页码(从 1 开始)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Common.PagedResultWithPageDto`1.PageSize">
<summary>
每页条数
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Common.PagedResultWithPageDto`1.TotalCount">
<summary>
总条数
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Common.PagedResultWithPageDto`1.TotalPages">
<summary>
总页数
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Common.PagedResultWithPageDto`1.Items">
<summary>
列表数据
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardCategoryDistributionDto">
<summary>
分类分布项
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardCategoryDistributionDto.CategoryId">
<summary>分类Id</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardCategoryDistributionDto.CategoryName">
<summary>分类名称</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardCategoryDistributionDto.Count">
<summary>数量</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardCategoryDistributionDto.Ratio">
<summary>占比(百分比)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardDailyTrendPointDto">
<summary>
日趋势点
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardDailyTrendPointDto.Date">
<summary>日期(yyyy-MM-dd)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardDailyTrendPointDto.Value">
<summary>值</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto">
<summary>
仪表盘指标卡片
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto.Key">
<summary>指标唯一标识(如 labelsPrintedToday)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto.Title">
<summary>指标标题</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto.Value">
<summary>当前值</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto.PreviousValue">
<summary>对比周期值</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto.ChangeValue">
<summary>增减值(Value - PreviousValue)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardMetricCardDto.ChangeRate">
<summary>增减比例(百分比)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto">
<summary>
仪表盘总览输出
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.LabelsPrintedToday">
<summary>今日打印标签</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.ActiveTemplates">
<summary>启用模板数</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.ActiveUsers">
<summary>活跃用户数</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.Locations">
<summary>门店数</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.People">
<summary>人员数</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.Products">
<summary>产品数</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.MetricCards">
<summary>指标卡片</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.WeeklyPrintVolume">
<summary>近7天打印趋势</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.CategoryDistribution">
<summary>按分类分布</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.CategoryDistributionTotal">
<summary>分类分布总数</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.ByCategory">
<summary>按分类分布(前端直观命名)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.ByCategoryTotal">
<summary>按分类分布总数(前端直观命名)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.RecentLabels">
<summary>最近打印标签(全门店最新若干条,用于 Recent Labels 区块)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardOverviewOutputDto.GeneratedAt">
<summary>统计时间</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto">
<summary>
Dashboard「Recent Labels」单行数据(最近打印记录)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.TaskId">
<summary>打印任务 Id(fl_label_print_task.Id)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.LabelCode">
<summary>标签编码(界面 Serial / Label ID,如 1-251201)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.DisplayName">
<summary>展示名称:优先产品名,否则标签名称</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.PrintedByUserId">
<summary>打印人用户 Id(CreatedBy)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.PrintedByName">
<summary>打印人展示名(User.Name 或 UserName)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.PrintedAt">
<summary>打印时间(PrintedAt 优先,否则 CreationTime)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.Status">
<summary>状态:<c>active</c> 或 <c>expired</c>(依据 PrintInputJson 中保质期与当前日期比较)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Dashboard.DashboardRecentLabelItemDto.LabelTypeBadge">
<summary>角标/尺寸短文案(如 2"x2",用于左侧圆标)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Group.GroupCreateInputVo">
<summary>
新建组织入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Group.GroupCreateInputVo.PartnerId">
<summary>
指派到的合作伙伴 Id(Assign to Partner)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo">
<summary>
组织(Group)分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo.Keyword">
<summary>
模糊搜索(GroupName、所属 Partner 的 PartnerName)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo.PartnerId">
<summary>
按所属合作伙伴筛选(fl_partner.Id)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo.State">
<summary>
启用状态
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListOutputDto">
<summary>
组织列表项
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListOutputDto.PartnerName">
<summary>
所属合作伙伴名称(列表「Parent Partner」列)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Group.GroupGetOutputDto">
<summary>
组织详情
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Group.GroupUpdateInputVo">
<summary>
编辑组织入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelCategory.LabelCategoryCreateInputVo.DisplayText">
<summary>
按钮展示文案(为空则默认使用 CategoryName)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelCategory.LabelCategoryCreateInputVo.CategoryPhotoUrl">
<summary>
COLOR 模式存色值、IMAGE 模式存图片 URL、TEXT 可为分类小图或空(与 buttonAppearance 配合)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelCategory.LabelCategoryCreateInputVo.ButtonAppearance">
<summary>
按钮外观:TEXT / COLOR / IMAGE(展示值见 categoryPhotoUrl)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelCategory.LabelCategoryCreateInputVo.AvailabilityType">
<summary>
门店可用范围:ALL / SPECIFIED
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelCategory.LabelCategoryCreateInputVo.LocationIds">
<summary>
指定门店 Id 列表(当 AvailabilityType=SPECIFIED 时必填)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.TemplateCode">
<summary>
editor JSON 里的 id,对应数据库 fl_label_template.TemplateCode
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.TemplateName">
<summary>
editor JSON 里的 name,对应数据库 fl_label_template.TemplateName
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.AppliedLocationType">
<summary>
editor JSON 里的 appliedLocation(ALL / SPECIFIED)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.State">
<summary>
预留:前端可能不传;如果不传则默认 true
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.Elements">
<summary>
elements(前端 editor 的 elements[],会全量重建)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.AppliedLocationIds">
<summary>
当 AppliedLocationType=SPECIFIED 时生效
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo.TemplateProductDefaults">
<summary>
模板与产品/标签类型绑定默认值
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateElementDto">
<summary>
模板元素(对齐 editor JSON:id/type/typeAdd/elementName/x/y/width/height/rotation/border/config 等)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateElementDto.TypeAdd">
<summary>
元素附加类型(分组前缀 + 控件名),如 label_Duration
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateElementDto.ValueSourceType">
<summary>
值来源:FIXED / AUTO_DB / PRINT_INPUT
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateElementDto.ConfigJson">
<summary>
元素配置
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListInputVo">
<summary>
标签模板分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListInputVo.Keyword">
<summary>
关键字(模板名称/模板编码)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListInputVo.LocationId">
<summary>
门店Id(用于筛选:ALL 或指定门店)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListInputVo.LabelType">
<summary>
标签类型(例如 PRICE)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListInputVo.State">
<summary>
状态
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListOutputDto.LocationText">
<summary>
位置展示:All Locations 或首个指定门店的名称
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListOutputDto.ContentsCount">
<summary>
elements 数量(Contents)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateProductDefaultDto">
<summary>
模板与产品/标签类型绑定后的默认值行
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateProductDefaultDto.DefaultValues">
<summary>
默认值JSON(建议结构:{ "el-xxx": "默认值" })
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListInputVo">
<summary>
标签分页列表入参(按产品展示多个标签)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListInputVo.LocationId">
<summary>
门店Id(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListInputVo.ProductId">
<summary>
产品Id(可选;用于“一个产品展示多个标签”)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListInputVo.TemplateCode">
<summary>
模板编码(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListOutputDto.Products">
<summary>
同一个标签绑定的产品名称,用 “,” 分割
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListOutputDto.TemplateCode">
<summary>
绑定模板的编码(与详情接口一致,供管理端「录入数据」等按模板操作)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListOutputDto.HasError">
<summary>
模板缺失字段告警(当前阶段暂定 false)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelPreviewResolveInputVo.LabelCode">
<summary>
标签编码(fl_label.LabelCode)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelPreviewResolveInputVo.ProductId">
<summary>
选择用于预览的产品Id(fl_product.Id)
如果不传,默认取该标签绑定的第一个产品
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelPreviewResolveInputVo.BaseTime">
<summary>
业务基准时间(用于 DATE/TIME 元素的渲染计算)
不传则默认使用服务器当前时间
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Label.LabelPreviewResolveInputVo.PrintInputJson">
<summary>
打印输入(前端传,用于 PRINT_INPUT 元素)
key 建议使用模板元素的 InputKey
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Label.LabelTemplatePreviewDto">
<summary>
预览输出:与前端 LabelCanvas/LabelPreviewOnly 的 LabelTemplate 结构尽量一致
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.LocationSupport.LocationSupportCreateInputVo">
<summary>
新增门店 Support 联系方式
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.LocationSupport.LocationSupportGetOutputDto">
<summary>
门店 Support 联系方式详情
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.LocationSupport.LocationSupportUpdateInputVo">
<summary>
编辑门店 Support 联系方式
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationBatchImportInputVo">
<summary>
Location Manager 批量导入(Excel)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationBatchImportInputVo.File">
<summary>
上传的 Excel 文件(与模板列一致)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationBatchImportResultDto">
<summary>
Location 批量导入结果
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateInputVo">
<summary>
门店批量编辑(网格「保存全部」)请求体
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateInputVo.Items">
<summary>
待保存的行;<c>id</c> 为 <see cref="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListOutputDto.Id"/>。可含空行:忽略 <see cref="F:System.Guid.Empty"/> 的项。
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateItemVo">
<summary>
单行编辑数据:主键 + 与单条 <c>PUT /location/{id}</c> 相同的可编辑字段。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateItemVo.Id">
<summary>
门店主键(非空、非 Empty 时才会更新)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateResultDto">
<summary>
门店批量编辑结果
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateErrorDto">
<summary>
批量编辑中单条失败信息
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateErrorDto.RowNumber">
<summary>
在请求 <c>items</c> 数组中的序号(从 1 开始,与前端网格行对应)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationCreateInputVo">
<summary>
新增门店入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationCreateInputVo.LocationCode">
<summary>
Location ID(业务编码)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo">
<summary>
门店分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo.Keyword">
<summary>
模糊搜索(Location ID/Name/Street/City/State/Country/Zip/Phone/Email)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo.Partner">
<summary>
Partner
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo.GroupName">
<summary>
Group
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo.State">
<summary>
启用状态
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListOutputDto">
<summary>
门店列表输出
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Location.LocationUpdateInputVo">
<summary>
编辑门店入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationUpdateInputVo.LocationName">
<summary>
Location Name
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Location.LocationUpdateInputVo.State">
<summary>
启用状态
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerCreateInputVo">
<summary>
新建合作伙伴入参
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListInputVo">
<summary>
合作伙伴分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListInputVo.Keyword">
<summary>
模糊搜索(PartnerName / ContactEmail / PhoneNumber)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListInputVo.State">
<summary>
启用状态(与列表筛选一致)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListOutputDto">
<summary>
合作伙伴列表项
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetOutputDto">
<summary>
合作伙伴详情
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Partner.PartnerUpdateInputVo">
<summary>
编辑合作伙伴入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Picture.PictureUploadInputVo.SubDir">
<summary>
可选子目录(相对路径),例如:category、category/2026-03
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Picture.PictureUploadOutputDto.Url">
<summary>
可直接保存到业务表的访问 URL(相对路径)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryCreateInputVo">
<summary>
产品模块:新增类别入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryCreateInputVo.DisplayText">
<summary>
按钮展示文案(为空则默认使用 CategoryName)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryCreateInputVo.CategoryPhotoUrl">
<summary>
COLOR 模式存色值、IMAGE 模式存图片 URL、TEXT 可为分类小图或空(与 buttonAppearance 配合)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryCreateInputVo.ButtonAppearance">
<summary>
按钮外观:TEXT / COLOR / IMAGE(展示值见 categoryPhotoUrl)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryCreateInputVo.AvailabilityType">
<summary>
门店可用范围:ALL / SPECIFIED
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryCreateInputVo.LocationIds">
<summary>
指定门店 Id 列表(当 AvailabilityType=SPECIFIED 时必填)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryGetListInputVo">
<summary>
产品模块:类别分页列表入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryGetListInputVo.Keyword">
<summary>
模糊搜索(CategoryCode/CategoryName)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryGetListInputVo.State">
<summary>
启用状态过滤
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryGetListOutputDto">
<summary>
产品模块:类别列表行
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryGetOutputDto">
<summary>
产品模块:类别详情
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryGetOutputDto.CategoryPhotoUrl">
<summary>COLOR 色值 / IMAGE 图片 URL / TEXT 可选图</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.ProductCategory.ProductCategoryUpdateInputVo">
<summary>
产品模块:编辑类别入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationCreateInputVo.LocationId">
<summary>
门店Id
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationCreateInputVo.ProductIds">
<summary>
产品Id列表
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationGetListInputVo">
<summary>
产品-门店分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationGetListInputVo.LocationId">
<summary>
门店Id(location.Id,string 表示)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationGetListInputVo.ProductId">
<summary>
产品Id(fl_product.Id,string)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationUpdateInputVo.ProductIds">
<summary>
产品Id列表(将替换当前门店下的全部产品关联)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Product.ProductBatchImportInputVo">
<summary>
Product 批量导入(Excel)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductBatchImportInputVo.File">
<summary>
上传的 Excel(列:Location / Product Category / Product / Product Code)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Product.ProductBulkUpdateInputVo">
<summary>
Product 批量编辑(网格保存全部)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Product.ProductBulkUpdateItemVo">
<summary>
单行:产品主键(字符串 Guid)+ 与单条 PUT 相同的 body 字段。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductCreateInputVo.ProductCode">
<summary>
可选。不传或空则创建时由后端生成唯一编码(如 PRD_xxxxxxxx)。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductCreateInputVo.LocationIds">
<summary>
可选。门店 Id 列表;每个 Id 在 fl_location_product 落一行(同一 fl_product 可对应多门店)。
不传或空列表则不在本接口写入门店关联(仍可用 product-location 接口维护)。
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Product.ProductGetListInputVo">
<summary>
产品分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductGetListInputVo.Keyword">
<summary>
模糊搜索(ProductCode/ProductName/CategoryName)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductGetListInputVo.State">
<summary>
启用状态
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductGetListOutputDto.NoOfLabels">
<summary>
该产品关联的标签数量(fl_label_product + fl_label)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductGetOutputDto.LocationIds">
<summary>
该产品关联的门店Id列表(来自 fl_location_product)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuCreateInputVo">
<summary>
新增权限(Menu)入参(美国版对外)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuCreateInputVo.ParentId">
<summary>
父级ID(menu 表为字符串ID,可能是数字;根节点默认 0)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuGetListInputVo">
<summary>
权限(Menu)分页查询入参(美国版对外)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuGetListInputVo.MenuSource">
<summary>
菜单来源(与 rbac 的 MenuSource 含义一致,int 存储)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuGetListOutputDto">
<summary>
权限(Menu)列表输出(美国版对外)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuTreeDto">
<summary>
权限树节点(返回菜单表全部字段)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuUpdateInputVo">
<summary>
编辑权限(Menu)入参(美国版对外)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu.RbacRoleMenuRemoveInputVo">
<summary>
角色-权限移除入参
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu.RbacRoleMenuSetInputVo">
<summary>
角色-权限设置入参(覆盖式)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu.RbacRoleMenuSetInputVo.RoleId">
<summary>
角色ID
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu.RbacRoleMenuSetInputVo.MenuIds">
<summary>
菜单ID列表(覆盖式)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleCreateInputVo">
<summary>
新增角色入参(美国版对外)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleCreateInputVo.DataScope">
<summary>
数据范围(与 rbac 的 DataScope 含义一致,int 存储)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetListInputVo">
<summary>
角色分页查询入参(美国版对外)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetListInputVo.RoleName">
<summary>
角色名称(模糊)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetListInputVo.RoleCode">
<summary>
角色编码(模糊)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetListInputVo.State">
<summary>
启用状态
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetListOutputDto">
<summary>
角色列表输出(美国版对外)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetOutputDto">
<summary>
角色详情输出(美国版对外)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetOutputDto.MenuIds">
<summary>
该角色已分配的菜单权限ID列表
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleUpdateInputVo">
<summary>
编辑角色入参(美国版对外)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportOutputDto">
<summary>
Label Report 聚合结果(卡片 + 图表 + Top 产品表)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportOutputDto.LabelsByCategory">
<summary>按标签分类的打印量(柱状图)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportOutputDto.PrintVolumeTrend">
<summary>折线图:默认统计区间内最后 7 个自然日(按日汇总)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportOutputDto.MostUsedProducts">
<summary>用量最高的产品(含占比)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportSummaryDto.TotalLabelsPrintedChangeRate">
<summary>相对上一同长周期变化率(百分比,如 20.1 表示 +20.1%)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportQueryInputVo">
<summary>
Label Report 统计与导出共用筛选
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogGetListInputVo">
<summary>
Web Reports — Print Log 分页查询
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto">
<summary>
Print Log 列表行(Reports 管理端)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.TaskId">
<summary>打印任务 Id(fl_label_print_task.Id),重打时使用</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.LabelCode">
<summary>标签编码(展示为 Label ID)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.CategoryName">
<summary>分类展示名(优先产品分类,否则标签分类)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.TemplateText">
<summary>模板展示(尺寸 + 模板名)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.PrintedByName">
<summary>打印人姓名</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.LocationText">
<summary>门店展示:名称 (编码)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.LocationId">
<summary>门店 Id(重打校验用)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogListItemDto.ExpiryDateText">
<summary>从 PrintInputJson 尽力解析的保质期文本;无则「无」</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBatchImportInputVo">
<summary>
Team Member 批量导入(Excel)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBatchImportInputVo.File">
<summary>
上传的 Excel 文件(与模板列一致)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBatchImportResultDto">
<summary>
Team Member 批量导入结果
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBulkUpdateInputVo">
<summary>
Team Member 批量编辑(网格「保存全部」)请求体
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBulkUpdateInputVo.Items">
<summary>
待保存的行;<c>id</c> 为成员主键。可含空行:忽略 id 为全零 GUID 的项。
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBulkUpdateItemVo">
<summary>
单行:主键 + 与单条 <c>PUT</c> 更新相同的字段。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberCreateInputVo.UserName">
<summary>
登录账号(建议用邮箱或自定义用户名)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberCreateInputVo.LocationIds">
<summary>
关联门店(至少1个)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListInputVo">
<summary>
成员分页查询入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListInputVo.Keyword">
<summary>
关键字(姓名/用户名/邮箱/电话)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListInputVo.RoleId">
<summary>
角色ID(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListInputVo.LocationId">
<summary>
门店ID(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListInputVo.State">
<summary>
启用状态(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListOutputDto.RoleId">
<summary>
角色(当前仅返回第一个)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberUpdateInputVo.Password">
<summary>
为空表示不改密码
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppBoundLocationDto">
<summary>
App 端展示的绑定门店信息
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppBoundLocationDto.Id">
<summary>门店主键 Id(Guid 字符串)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppBoundLocationDto.LocationCode">
<summary>业务编码,如 LOC-1</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppBoundLocationDto.LocationName">
<summary>门店名称</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppBoundLocationDto.FullAddress">
<summary>拼接后的完整地址,便于移动端展示</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppBoundLocationDto.State">
<summary>门店是否启用</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppChangePasswordInputVo">
<summary>
App 修改密码入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppChangePasswordInputVo.CurrentPassword">
<summary>当前密码</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppChangePasswordInputVo.NewPassword">
<summary>新密码</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppChangePasswordInputVo.ConfirmNewPassword">
<summary>确认新密码</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto">
<summary>
App「Location」门店详情(与原型字段对齐)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.LocationId">
<summary>门店主键(Guid 字符串)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.LocationName">
<summary>门店名称</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.FullAddress">
<summary>完整地址(街道、城市、州、邮编拼接;无则为「无」)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.StorePhone">
<summary>门店电话(来自 location.Phone;空为「无」)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.OperatingHours">
<summary>营业时间;当前库无字段,固定返回「无」直至业务落库</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.ManagerName">
<summary>店长姓名;优先取绑定本店且角色名/编码含 manager 的用户</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLocationDetailOutputDto.ManagerPhone">
<summary>店长电话;同上用户 User.Phone 格式化;无则为「无」</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginInputVo">
<summary>
美国版 App 登录入参(使用邮箱作为账号,支持图形验证码)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginInputVo.Email">
<summary>登录邮箱(对应 user.Email)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginInputVo.Uuid">
<summary>图形验证码 UUID(开启验证码时必填)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginInputVo.Code">
<summary>图形验证码(开启验证码时必填)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginOutputDto">
<summary>
美国版 App 登录返回(含 Token 与绑定门店)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginOutputDto.Locations">
<summary>当前账号在 userlocation 中绑定的门店列表</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto">
<summary>
App「我的资料」展示数据(My Profile)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto.FullName">
<summary>全名(Name,无则 Nick,再无则 UserName)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto.Email">
<summary>邮箱</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto.Phone">
<summary>电话展示(如 +1 (555) 123-4567);无则「无」</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto.EmployeeId">
<summary>员工号/登录名(当前使用 <c>User.UserName</c>,可与业务约定为工号)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto.RoleDisplay">
<summary>角色展示名(多角色英文逗号拼接,按角色 OrderNum)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppMyProfileOutputDto.PrimaryRoleCode">
<summary>主角色编码(第一个角色 RoleCode,供前端样式)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogDataItemDto">
<summary>
打印明细快照(接口 10,对应 fl_label_print_data 解析后的元素级信息)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogDataItemDto.RenderConfigJson">
<summary>
元素完整 JSON(与 LabelTemplateElementDto / 编辑器 elements[] 项同构),供 App 重打组装模板。
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogGetListInputVo">
<summary>
App 打印日志分页查询入参(仅当前登录账号 + 当前门店)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogGetListInputVo.LocationId">
<summary>
当前门店 Id(location.Id,Guid 字符串)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto">
<summary>
打印日志列表项
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.TaskId">
<summary>任务Id(fl_label_print_task.Id)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.BatchId">
<summary>批次Id(同一次点击 Print 共享)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.CopyIndex">
<summary>第几份(从 1 开始)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.LabelId">
<summary>标签Id</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.LabelCode">
<summary>标签编码</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.ProductId">
<summary>产品Id</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.ProductName">
<summary>产品名称</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.TypeName">
<summary>标签类型名称(来自 fl_label_type.TypeName)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.LabelSizeText">
<summary>模板尺寸(来自 fl_label_template.Width/Height/Unit)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.PrintInputJson">
<summary>打印入参 JSON(直接来自 fl_label_print_task.PrintInputJson 列)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.PrintedAt">
<summary>打印时间(PrintedAt ?? CreationTime)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.OperatorName">
<summary>操作人姓名(当前登录账号 Name)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogItemDto.LocationName">
<summary>门店名称</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelCategoryTreeNodeDto">
<summary>
第一级:标签分类(fl_label_category)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelCategoryTreeNodeDto.ButtonAppearance">
<summary>按钮外观:TEXT / COLOR / IMAGE(COLOR/IMAGE 的展示值在 categoryPhotoUrl)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingProductNodeDto">
<summary>
第三级:产品卡片(同一产品 Id 若存在多套标签模板,按 <c>TemplateId</c> 拆成多条,便于端上多卡展示)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingProductNodeDto.TemplateId">
<summary>当前卡片对应 <c>fl_label.TemplateId</c>;与 <c>ProductId</c> 共同唯一标识一张卡</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingProductNodeDto.TemplateCode">
<summary>当前卡片所用模板编码(与四级节点一致)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingProductNodeDto.TemplateLabelSizeText">
<summary>当前卡片模板尺寸文案(如 6.00x12.00cm)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingProductNodeDto.Subtitle">
<summary>副标题(无独立业务字段时:有编码显示编码,否则「无」)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingProductNodeDto.LabelTypes">
<summary>第四级:该产品在当前标签分类+门店下可选的标签种类</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingTreeInputVo">
<summary>
App Labeling 四级列表入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingTreeInputVo.LocationId">
<summary>当前门店 Id(location.Id,Guid 字符串)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingTreeInputVo.Keyword">
<summary>关键词(匹配标签分类/产品分类/产品名/标签类型/标签名称)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingTreeInputVo.LabelCategoryId">
<summary>仅展示某一标签分类(侧边栏选中时传);不传则返回全部分类</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewDto">
<summary>
App 标签预览出参(顶部信息 + 预览模板结构)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewDto.PreviewImageBase64Png">
<summary>
预览图(base64 png,可空;若为空,客户端可用 Template 自行渲染)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewDto.Template">
<summary>
预览模板结构(与 LabelCanvas/LabelPreviewOnly 结构尽量一致)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewDto.TemplateProductDefaultValues">
<summary>
当前预览上下文(模板+产品+标签类型)命中的默认值配置。
数据来源:fl_label_template_product_default.DefaultValuesJson
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo">
<summary>
App 标签预览入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo.LocationId">
<summary>
门店Id(fl_label.LocationId)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo.LabelCode">
<summary>
标签编码(fl_label.LabelCode)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo.ProductId">
<summary>
选择用于预览的产品Id(fl_product.Id)
不传则默认取该标签绑定的第一个产品
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo.BaseTime">
<summary>
业务基准时间(用于 DATE/TIME 等元素的计算)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo.PrintInputJson">
<summary>
打印输入(用于 PRINT_INPUT 元素)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo">
<summary>
App 打印入参
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.LocationId">
<summary>
门店Id(fl_label.LocationId)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.LabelCode">
<summary>
标签编码(fl_label.LabelCode)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.ProductId">
<summary>
选择用于打印的产品Id(fl_product.Id)
不传则默认取该标签绑定的第一个产品
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.PrintQuantity">
<summary>
打印份数(<=0 则按 1 处理)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.ClientRequestId">
<summary>
客户端幂等请求Id(可选)。
同一个 clientRequestId 重复调用 print 接口时,后端会直接返回首次创建的 batchId/taskIds,不会重复写库。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.BaseTime">
<summary>
业务基准时间(用于 DATE/TIME 等元素的计算)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.PrintInputJson">
<summary>
打印数据(对齐《标签模块接口对接说明(10)》):
- App 推荐传:与平台导出 label-template-*.json 同构的<strong>合并后模板</strong>(含 elements[].config),便于落库后直接重打;
- 兼容旧客户端:扁平字典(key 对齐元素 inputKey),由服务端 PreviewAsync 解析生成 RenderDataJson。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.PrinterId">
<summary>
打印机Id(可选,若业务需要追踪)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.PrinterMac">
<summary>
打印机蓝牙 MAC(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo.PrinterAddress">
<summary>
打印机地址(可选)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintOutputDto">
<summary>
App 打印出参(接口 9 / 11)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo">
<summary>
App 重新打印入参(根据历史任务Id重打)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.LocationId">
<summary>
当前门店Id(用于权限校验,必须与历史任务一致)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.TaskId">
<summary>
历史打印任务Id(fl_label_print_task.Id)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.PrintQuantity">
<summary>
重新打印份数(<=0 则按 1 处理;默认 1)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.ClientRequestId">
<summary>
客户端幂等请求Id(可选)。
同一个 clientRequestId 重复调用 reprint 接口时,后端会直接返回首次创建的 batchId/taskIds,不会重复写库。
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.PrinterId">
<summary>
重新打印时可覆盖打印机Id(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.PrinterMac">
<summary>
重新打印时可覆盖打印机蓝牙 MAC(可选)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo.PrinterAddress">
<summary>
重新打印时可覆盖打印机地址(可选)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelTypeNodeDto">
<summary>
第四级:标签种类(对应一条可打印的标签实例)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelTypeNodeDto.LabelCode">
<summary>业务标签编码,预览/打印流程使用</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelTypeNodeDto.LabelSizeText">
<summary>模板物理尺寸描述,如 2"x2"</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto">
<summary>
第二级:产品分类(fl_product.CategoryId join fl_product_category)
</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.CategoryId">
<summary>产品分类Id;当产品未归类或分类不存在时为空</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.CategoryPhotoUrl">
<summary>产品分类图片地址;当产品未归类或分类不存在时为空</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.Name">
<summary>分类显示名;空为「无」</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.DisplayText">
<summary>按钮展示文案;为空时客户端可回退使用 Name</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.ButtonAppearance">
<summary>按钮外观:TEXT / COLOR / IMAGE(COLOR/IMAGE 的展示值在 categoryPhotoUrl)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.AvailabilityType">
<summary>门店可用范围:ALL / SPECIFIED(本树已按当前门店过滤)</summary>
</member>
<member name="P:FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppProductCategoryNodeDto.OrderNum">
<summary>排序号(来自 fl_product_category;未归类为较大值以排在后)</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.FoodLabelingApplicationContractsModule">
<summary>
Food Labeling 模块 - 应用契约层(美国版)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IAuthSessionAppService">
<summary>
当前登录会话:菜单权限与退出(美国版 Web 管理端)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IAuthSessionAppService.GetMyMenusAsync">
<summary>
获取当前登录用户的角色编码、权限码与可见菜单树
</summary>
<remarks>
与框架 <c>UserManager.GetInfoAsync</c> 一致;用户名为 <c>admin</c> 时返回全部未删除菜单(与 <c>AccountService.GetVue3Router</c> 行为对齐)。
</remarks>
<returns>用户简要信息、权限码与菜单树</returns>
<response code="200">成功</response>
<response code="401">未登录或令牌无效</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IAuthSessionAppService.LogoutAsync">
<summary>
退出登录:清除服务端用户信息缓存(JWT 仍由前端丢弃)
</summary>
<remarks>
与框架 <c>AccountService.PostLogout</c> 一致;未登录时返回 <c>false</c>。
</remarks>
<returns>是否执行了缓存清理(已登录为 true)</returns>
<response code="200">成功</response>
<response code="500">服务器错误</response>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IDashboardAppService">
<summary>
Dashboard 统计接口(美国版)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IDashboardAppService.GetOverviewAsync">
<summary>
获取 Dashboard 总览统计(卡片 + 周趋势 + 分类分布 + Recent Labels 最近打印)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IFoodLabelDemoAppService">
<summary>
Food Labeling 示例应用服务接口(美国版)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IFoodLabelDemoAppService.HelloAsync(System.String)">
<summary>
简单问候示例接口
</summary>
<param name="name">姓名</param>
<returns>问候语</returns>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IGroupAppService">
<summary>
组织(Group)管理接口(fl_group)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo)">
<summary>
组织分页列表(与导出使用相同筛选条件)
</summary>
<param name="input">分页与筛选;SkipCount 为页码(从 1 起)</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.GetAsync(System.String)">
<summary>
组织详情
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.Group.GroupCreateInputVo)">
<summary>
新增组织
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.Group.GroupUpdateInputVo)">
<summary>
编辑组织
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.DeleteAsync(System.String)">
<summary>
删除组织(逻辑删除)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.ExportPdfAsync(FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo)">
<summary>
按列表相同筛选条件全量导出组织(Region)为 PDF(不分页;与 <see cref="M:FoodLabeling.Application.Contracts.IServices.IGroupAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Group.GroupGetListInputVo)"/> 相同筛选;单次最多 5000 条)
</summary>
<param name="input">Keyword、PartnerId、State、Sorting;分页字段忽略</param>
<returns>application/pdf</returns>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.ILabelAppService">
<summary>
标签管理接口(美国版)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Label.LabelGetListInputVo)">
<summary>
按产品分页列表(一个产品展示多个标签)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelAppService.GetAsync(System.String)">
<summary>
标签详情(id=LabelCode)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.Label.LabelCreateInputVo)">
<summary>
新增标签
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.Label.LabelUpdateInputVo)">
<summary>
编辑标签(id=LabelCode)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelAppService.DeleteAsync(System.String)">
<summary>
删除标签(逻辑删除)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelAppService.PreviewAsync(FoodLabeling.Application.Contracts.Dtos.Label.LabelPreviewResolveInputVo)">
<summary>
标签预览:解析模板 AUTO_DB/PRINT_INPUT(不做打印落库)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.ILabelTemplateAppService">
<summary>
标签模板管理接口(美国版对外)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelTemplateAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateGetListInputVo)">
<summary>
标签模板分页列表
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelTemplateAppService.GetAsync(System.String)">
<summary>
标签模板详情(含 elements 与适用门店)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelTemplateAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateCreateInputVo)">
<summary>
新增标签模板
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelTemplateAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.LabelTemplate.LabelTemplateUpdateInputVo)">
<summary>
编辑标签模板(版本号 +1,重建 elements)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILabelTemplateAppService.DeleteAsync(System.String)">
<summary>
删除标签模板(逻辑删除;若已被标签引用则禁止)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.ILocationAppService">
<summary>
门店管理接口(美国版)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo)">
<summary>
门店分页列表
</summary>
<param name="input">查询条件</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.Location.LocationCreateInputVo)">
<summary>
新增门店
</summary>
<param name="input">门店信息</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.UpdateAsync(System.Guid,FoodLabeling.Application.Contracts.Dtos.Location.LocationUpdateInputVo)">
<summary>
编辑门店
</summary>
<param name="id">门店Id</param>
<param name="input">门店信息</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.DeleteAsync(System.Guid)">
<summary>
删除门店(逻辑删除)
</summary>
<param name="id">门店Id</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.DownloadLocationImportTemplateAsync">
<summary>
下载 Location Manager 批量导入模板(读取服务器 <c>batchImportOfFiles</c> 目录下 xlsx)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.ExportLocationsExcelAsync(FoodLabeling.Application.Contracts.Dtos.Location.LocationGetListInputVo)">
<summary>
按列表筛选条件全量导出门店为 Excel(与列表相同过滤与排序,不分页、不限条数)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.ImportLocationsBatchAsync(FoodLabeling.Application.Contracts.Dtos.Location.LocationBatchImportInputVo)">
<summary>
批量导入门店(Excel,multipart/form-data 字段 <c>file</c>)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationAppService.UpdateLocationsBulkAsync(FoodLabeling.Application.Contracts.Dtos.Location.LocationBulkUpdateInputVo)">
<summary>
批量编辑门店(网格保存全部,JSON 一次提交多行)
</summary>
<remarks>
每行通过 <c>id</c> 定位门店,字段与单条 <c>PUT /location/{id}</c> 一致;<c>id</c> 为 <see cref="F:System.Guid.Empty"/> 的项忽略。
示例请求:
```json
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"partner": "MedVantage Cafe Group",
"groupName": "NC Region",
"locationName": "UNCC store",
"street": "222 School House Lane",
"city": "Charlotte",
"stateCode": "NC",
"country": "USA",
"zipCode": "29889",
"phone": "2123456789",
"email": "nc@example.com",
"latitude": 35.3,
"longitude": -80.7,
"state": true
}
]
}
```
参数说明:
- items: 编辑行数组;单行失败不影响其它行提交结果汇总
</remarks>
<param name="input">批量编辑请求体</param>
<returns>成功数、失败数及失败明细</returns>
<response code="200">全部或部分行处理完成,见返回体中的计数与 errors</response>
<response code="400">整单校验失败(如超过单次条数上限、items 为空)</response>
<response code="500">服务器错误</response>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.ILocationSupportAppService">
<summary>
全局 Support 联系方式(全平台共用;Web 可增改查,App 仅可查)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationSupportAppService.GetSupportAsync">
<summary>
查询全局 Support 联系方式(已登录即可;App / Web 共用)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationSupportAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.LocationSupport.LocationSupportCreateInputVo)">
<summary>
新增全局 Support 联系方式(系统仅允许一条;Web 管理端)
</summary>
<param name="input">联系方式</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ILocationSupportAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.LocationSupport.LocationSupportUpdateInputVo)">
<summary>
编辑全局 Support 联系方式(Web 管理端)
</summary>
<param name="id">联系方式主键</param>
<param name="input">联系方式</param>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IPartnerAppService">
<summary>
合作伙伴管理接口(fl_partner)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListInputVo)">
<summary>
合作伙伴分页列表(与导出使用相同筛选条件)
</summary>
<param name="input">分页与筛选;SkipCount 为页码(从 1 起)</param>
<returns>分页数据</returns>
<response code="200">成功</response>
<response code="400">参数错误</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.GetAsync(System.String)">
<summary>
合作伙伴详情
</summary>
<param name="id">主键 Id</param>
<returns>详情</returns>
<response code="200">成功</response>
<response code="400">Id 无效</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.Partner.PartnerCreateInputVo)">
<summary>
新增合作伙伴
</summary>
<param name="input">名称、邮箱、电话、启用状态</param>
<returns>新建后的详情</returns>
<remarks>
示例请求:
```json
{
"partnerName": "Global Foods Inc.",
"contactEmail": "admin@globalfoods.com",
"phoneNumber": "+1 (555) 100-2000",
"state": true
}
```
</remarks>
<response code="200">成功</response>
<response code="400">校验失败</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.Partner.PartnerUpdateInputVo)">
<summary>
编辑合作伙伴
</summary>
<param name="id">主键 Id</param>
<param name="input">名称、邮箱、电话、启用状态</param>
<returns>更新后的详情</returns>
<response code="200">成功</response>
<response code="400">校验失败或记录不存在</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.DeleteAsync(System.String)">
<summary>
删除合作伙伴(逻辑删除)
</summary>
<param name="id">主键 Id</param>
<response code="200">成功</response>
<response code="400">Id 无效或记录不存在</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.ExportPdfAsync(FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListInputVo)">
<summary>
按当前列表筛选条件批量导出合作伙伴为 PDF(Account Management「Company」页签;不分页,上限 5000 条)
</summary>
<param name="input">与列表相同的 Keyword、State;分页字段忽略</param>
<returns>PDF 文件流</returns>
<remarks>
筛选条件需与 <see cref="M:FoodLabeling.Application.Contracts.IServices.IPartnerAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Partner.PartnerGetListInputVo)"/> 一致,便于统计与导出数据对齐。
</remarks>
<response code="200">成功返回 application/pdf</response>
<response code="400">参数错误</response>
<response code="500">服务器错误</response>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IProductAppService">
<summary>
产品管理接口(Products,fl_product)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.Product.ProductGetListInputVo)">
<summary>
产品分页列表
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.GetAsync(System.Guid)">
<summary>
产品详情
</summary>
<param name="id">产品主键(Guid,与 <c>fl_product.Id</c> 一致;使用 Guid 路由约束,避免与 <c>export-*</c> 等字面路径冲突)</param>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.Product.ProductCreateInputVo)">
<summary>
新增产品
</summary>
<remarks>
<see cref="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductCreateInputVo.ProductCode"/> 可选;为空时后端生成唯一编码(如 PRD_ + Guid)。
若 <see cref="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductCreateInputVo.LocationIds"/> 有值,将在同一事务内批量写入 fl_location_product(一门店一条)。
</remarks>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.UpdateAsync(System.Guid,FoodLabeling.Application.Contracts.Dtos.Product.ProductUpdateInputVo)">
<summary>
编辑产品
</summary>
<remarks>
当请求体包含 <see cref="P:FoodLabeling.Application.Contracts.Dtos.Product.ProductCreateInputVo.LocationIds"/> 属性时,按该列表整表替换本产品在各门店的关联;
不传该属性则不改门店关联(兼容仅改名称/分类等调用)。
</remarks>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.DeleteAsync(System.Guid)">
<summary>
删除产品(逻辑删除)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.DownloadProductImportTemplateAsync">
<summary>
下载 Product 批量导入模板(服务器 <c>TemplateDirectory</c> 下 xlsx)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.ExportProductsExcelAsync(FoodLabeling.Application.Contracts.Dtos.Product.ProductGetListInputVo)">
<summary>
按列表筛选条件全量导出产品为 Excel(与列表相同过滤;不分页)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.ImportProductsBatchAsync(FoodLabeling.Application.Contracts.Dtos.Product.ProductBatchImportInputVo)">
<summary>
批量导入产品(Excel,<c>multipart/form-data</c> 字段 <c>file</c>)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductAppService.UpdateProductsBulkAsync(FoodLabeling.Application.Contracts.Dtos.Product.ProductBulkUpdateInputVo)">
<summary>
批量编辑产品(JSON 一次提交多行,与单条 <c>PUT</c> 字段一致)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IProductCategoryAppService">
<summary>
产品模块:类别(Categories)接口
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IProductLocationAppService">
<summary>
产品-门店关联管理(fl_location_product)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductLocationAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationGetListInputVo)">
<summary>
关联分页列表(可按门店Id/产品Id过滤)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductLocationAppService.GetAsync(System.String)">
<summary>
门店下的全部产品(id=LocationId)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductLocationAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationCreateInputVo)">
<summary>
新增/批量建立门店与产品的关联
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductLocationAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.ProductLocation.ProductLocationUpdateInputVo)">
<summary>
编辑:替换该门店下的全部产品关联
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IProductLocationAppService.DeleteAsync(System.String)">
<summary>
删除:删除该门店的全部产品关联
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService">
<summary>
权限(Menu)管理接口(仅用于食品标签-美国版对外)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuGetListInputVo)">
<summary>
权限列表(不分页)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService.GetAsync(System.String)">
<summary>
权限详情
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuCreateInputVo)">
<summary>
新增权限
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService.UpdateAsync(System.String,FoodLabeling.Application.Contracts.Dtos.RbacMenu.RbacMenuUpdateInputVo)">
<summary>
编辑权限
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService.DeleteAsync(System.Collections.Generic.List{System.String})">
<summary>
删除权限(逻辑删除)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacMenuAppService.GetTreeAsync">
<summary>
获取全部权限树(GET)
</summary>
<returns>树状权限列表</returns>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IRbacRoleAppService">
<summary>
角色管理接口(仅用于食品标签-美国版对外)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleAppService.GetListAsync(FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleGetListInputVo)">
<summary>
角色分页列表
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleAppService.GetAsync(System.Guid)">
<summary>
角色详情
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleAppService.CreateAsync(FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleCreateInputVo)">
<summary>
新增角色
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleAppService.UpdateAsync(System.Guid,FoodLabeling.Application.Contracts.Dtos.RbacRole.RbacRoleUpdateInputVo)">
<summary>
编辑角色
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleAppService.DeleteAsync(System.Collections.Generic.List{System.Guid})">
<summary>
删除角色(逻辑删除)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IRbacRoleMenuAppService">
<summary>
角色-权限关联接口(仅用于食品标签-美国版对外)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleMenuAppService.SetAsync(FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu.RbacRoleMenuSetInputVo)">
<summary>
覆盖式设置角色的菜单权限
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleMenuAppService.GetMenuIdsAsync(System.Guid)">
<summary>
获取角色已分配的菜单ID列表
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IRbacRoleMenuAppService.RemoveAsync(FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu.RbacRoleMenuRemoveInputVo)">
<summary>
移除角色的指定菜单权限
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IReportsAppService">
<summary>
Reports(Print Log / Label Report)管理端接口
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IReportsAppService.GetPrintLogListAsync(FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogGetListInputVo)">
<summary>
Print Log 分页列表;角色 <c>admin</c> 可查全部,否则仅当前用户打印记录。
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IReportsAppService.ExportPrintLogPdfAsync(FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogGetListInputVo)">
<summary>
Print Log 导出 PDF(筛选与列表一致,最多 5000 条)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IReportsAppService.ExportPrintLogExcelAsync(FoodLabeling.Application.Contracts.Dtos.Reports.ReportsPrintLogGetListInputVo)">
<summary>
Print Log 全量导出 Excel(筛选与列表一致;排序与列表 <c>PrintedAt</c> 规则一致;最多 5000 条)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IReportsAppService.ReprintPrintLogAsync(FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo)">
<summary>
根据历史任务重打(与 App 入参一致);<c>admin</c> 可重打任意用户任务,否则仅本人任务。
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IReportsAppService.GetLabelReportAsync(FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportQueryInputVo)">
<summary>
Label Report 统计(卡片 + 分类柱数据 + 7 日趋势 + Top 产品);<c>admin</c> 统计全部,否则仅当前用户。
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IReportsAppService.ExportLabelReportPdfAsync(FoodLabeling.Application.Contracts.Dtos.Reports.ReportsLabelReportQueryInputVo)">
<summary>
Label Report 导出 PDF
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ITeamMemberAppService.DownloadTeamMemberImportTemplateAsync">
<summary>
下载 Team Member 批量导入模板(服务器 batchImportOfFiles 目录下 xlsx)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ITeamMemberAppService.ExportTeamMembersPdfAsync(FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberGetListInputVo)">
<summary>
按列表筛选条件全量导出成员为 PDF(与列表相同过滤;不分页、不限条数)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ITeamMemberAppService.ImportTeamMembersBatchAsync(FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBatchImportInputVo)">
<summary>
批量导入成员(Excel,multipart/form-data 字段 <c>file</c>)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.ITeamMemberAppService.UpdateTeamMembersBulkAsync(FoodLabeling.Application.Contracts.Dtos.TeamMember.TeamMemberBulkUpdateInputVo)">
<summary>
批量编辑成员(JSON 一次提交多行)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IUsAppAuthAppService">
<summary>
美国版移动端认证(登录返回绑定门店)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppAuthAppService.LoginAsync(FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppLoginInputVo)">
<summary>
App 登录:使用邮箱 + 密码校验并签发 Token,同时返回 userlocation 绑定的门店
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppAuthAppService.GetMyLocationsAsync">
<summary>
获取当前登录账号已绑定的门店(用于切换门店等场景)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppAuthAppService.GetMyProfileAsync">
<summary>
获取当前登录用户资料(My Profile:姓名、邮箱、电话、员工号、角色)
</summary>
<returns>资料 DTO</returns>
<response code="200">成功</response>
<response code="400">未登录或用户不存在</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppAuthAppService.ChangePasswordAsync(FoodLabeling.Application.Contracts.Dtos.UsAppAuth.UsAppChangePasswordInputVo)">
<summary>
当前登录用户修改密码(校验原密码与复杂度规则)
</summary>
<param name="input">当前密码、新密码、确认密码</param>
<remarks>
新密码需满足:至少 8 位;含大写与小写字母;至少 1 位数字;至少 1 个非字母数字特殊字符。
</remarks>
<response code="200">成功</response>
<response code="400">参数或校验失败</response>
<response code="500">服务器错误</response>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppAuthAppService.GetLocationDetailAsync(System.String)">
<summary>
按门店 Id 查询 Location 详情(须为当前账号 userlocation 绑定门店)
</summary>
<param name="locationId">门店 Guid 字符串</param>
<returns>店名、地址、电话、营业时间占位、店长信息</returns>
<response code="200">成功</response>
<response code="400">参数非法、未绑定或无权限</response>
<response code="500">服务器错误</response>
</member>
<member name="T:FoodLabeling.Application.Contracts.IServices.IUsAppLabelingAppService">
<summary>
App Labeling:四级列表(标签分类 → 产品分类 → 产品卡片「按模板拆分」→ 标签种类)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppLabelingAppService.GetLabelingTreeAsync(FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelingTreeInputVo)">
<summary>
获取当前门店下四级嵌套树,供移动端 Labeling 首页使用
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppLabelingAppService.PreviewAsync(FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPreviewInputVo)">
<summary>
App 打印预览:按标签编码解析模板并返回顶部展示字段 + 预览模板结构
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppLabelingAppService.PrintAsync(FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelPrintInputVo)">
<summary>
App 打印:创建打印任务并落库打印明细(fl_label_print_task / fl_label_print_data)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppLabelingAppService.ReprintAsync(FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.UsAppLabelReprintInputVo)">
<summary>
App 重新打印:根据历史任务Id重打(创建新任务与明细)
</summary>
</member>
<member name="M:FoodLabeling.Application.Contracts.IServices.IUsAppLabelingAppService.GetPrintLogListAsync(FoodLabeling.Application.Contracts.Dtos.UsAppLabeling.PrintLogGetListInputVo)">
<summary>
App 打印日志:获取当前登录账号在当前门店打印的记录(分页,时间倒序)
</summary>
</member>
<member name="T:FoodLabeling.Application.Contracts.UsAppJwtClaims">
<summary>
美国版 App JWT 自定义声明(用于与 Web 管理端 Token 区分能力)
</summary>
</member>
<member name="F:FoodLabeling.Application.Contracts.UsAppJwtClaims.ClientKind">
<summary>声明类型:客户端种类</summary>
</member>
<member name="F:FoodLabeling.Application.Contracts.UsAppJwtClaims.ClientKindUsApp">
<summary>美国版移动端 App</summary>
</member>
</members>
</doc>