1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| using Furion.FriendlyException;
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace ApiTools.Core.Enums.WxmpUtils
| {
| [ErrorCodeType]
| public enum EnumTemplate
| {
| [ErrorCodeItemMetadata("模板1")]
| Template01 = 01,
|
| [ErrorCodeItemMetadata("模板2")]
| Template02 = 02,
| }
| }
|
|