ClsDataBaseType.cs 788 B

1234567891011121314151617181920212223242526
  1. /*******************************************************************************
  2. * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:ClsDataBaseType.cs
  5. * 2.功能描述:数据库枚举类
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 张国印 2014/09/01 1.00 新建
  9. *******************************************************************************/
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Linq;
  13. using System.Text;
  14. namespace Dongke.IBOSS.PRD.Basics.DataAccess
  15. {
  16. /// <summary>
  17. /// 数据库枚举类
  18. /// </summary>
  19. public enum DataBaseType
  20. {
  21. ORACLE,
  22. MSSQLSERVER,
  23. }
  24. }