巨石化纤
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.

14 lines
507 B

using IBatisNet.DataMapper;
using IBatisNet.DataMapper.Configuration;
using System.Threading;
namespace SSWMS.Server
{
public class P_Base_Common
{
public static readonly ISqlMapper sqlMapHouse = new DomSqlMapBuilder().Configure("HouseMap.config");
//public static readonly ISqlMapper sqlMapERP = new DomSqlMapBuilder().Configure("ERPMap.config");
public static readonly Mutex mutexHouse = new Mutex();
//public static readonly Mutex mutexERP = new Mutex();
}
}