123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Uninpho.Tools.components
- {
- [Flags]
- enum TableName
- {
- QX_Data = 1,
- DC_Data = 2,
- GJ_Data = 4,
- T_xxxw_csvdata = 8,
- T_xxxw_csvlist = 16
- }
- }
|