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

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);
}
}
}