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

16 lines
368 B

namespace SSWMS.Server
{
public class P_Base_House<T_Model> : P_Base<T_Model>
{
public P_Base_House()
{
this._sqlMap = P_Base_Common.sqlMapHouse;
this._mutex = P_Base_Common.mutexHouse;
}
public void InitSystem()
{
this._sqlMap.QueryForList("InitSystem", null);
}
}
}