sunpengfei
2025-11-21 2429b458b19de2d1871b97c323ef010711cbba79
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,
    }
}