12345678910111213141516171819 |
- 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,
- T_gonglv_account = 32
- }
- }
|