You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
407 B
20 lines
407 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Warehouse.Code
|
|
{
|
|
public static class Common
|
|
{
|
|
public static int DBType =(int)DB.sqlserver;
|
|
// public static int DBType = (int)DB.mysql;
|
|
}
|
|
|
|
enum DB:int { sqlserver,mysql };
|
|
|
|
public static class ContainerContent
|
|
{
|
|
public static string OriginPlace = "ZX";
|
|
}
|
|
}
|