TableName.cs 352 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Uninpho.Tools.components
  7. {
  8. [Flags]
  9. enum TableName
  10. {
  11. QX_Data = 1,
  12. DC_Data = 2,
  13. GJ_Data = 4,
  14. T_xxxw_csvdata = 8,
  15. T_xxxw_csvlist = 16,
  16. T_gonglv_account = 32
  17. }
  18. }