TableName.cs 321 B

123456789101112131415161718
  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. }
  17. }