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

17 lines
456 B

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