巨石化纤

19 lines
552 B

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