using SSWMS.Common; using System.Collections; namespace SSWMS.Server { public class P_SYS_USER : P_Base_House { public SYS_USER GetModelByUserCode(string sUserCode) { return this._sqlMap.QueryForObject("SYS_USER_SELECT_BY_USER_CODE", new Hashtable { { "USER_CODE", sUserCode }, { "USER_FLAG", SystemCode.FLAG.Enable } }); } } }