2011-10-19 焊接修改
This commit is contained in:
@@ -237,6 +237,16 @@ namespace BLL
|
||||
select x).ToList();
|
||||
return q;
|
||||
|
||||
}
|
||||
public static List<Model.HJGL_Pipeline_Component> GetComponentByPipelineId(string PipelineId)
|
||||
{
|
||||
|
||||
Model.SGGLDB db = Funs.DB;
|
||||
var q = (from x in db.HJGL_Pipeline_Component
|
||||
where x.PipelineId == PipelineId
|
||||
select x).OrderBy(x=>x.PlanStartDate).ToList();
|
||||
return q;
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// 管线下拉框
|
||||
|
||||
Reference in New Issue
Block a user