using SSWMS.Common; using System.Collections; using System.Collections.Generic; namespace SSWMS.Server { public class P_PLAN_MAIN : P_Base_House { public PLAN_MAIN GetModelByPlanCode(string sPlanCode) { return this._sqlMap.QueryForObject("PLAN_MAIN_SELECT_BY_PLAN_CODE", sPlanCode); } public IList GetListByStatus(string sPlanStatus) { return this._sqlMap.QueryForList("PLAN_MAIN_SELECT_BY_STATUS", sPlanStatus); } } }