25 lines
730 B
C#
25 lines
730 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BLL
|
|
{
|
|
public class TestPackageManageImportService
|
|
{ /// <summary>
|
|
/// 根据试压Id获取用于管线明细信息
|
|
/// </summary>
|
|
/// <param name="jot_id"></param>
|
|
/// <returns></returns>
|
|
public static List<Model.PW_IsoInfo> GetIsoInfosByPTP_ID(string PTP_ID)
|
|
{
|
|
var view = from x in Funs.DB.PW_IsoInfo
|
|
join y in Funs.DB.TP_IsoImportList on x.ISO_ID equals y.ISO_ID
|
|
where y.PTP_ID == PTP_ID
|
|
select x;
|
|
return view.ToList();
|
|
}
|
|
}
|
|
}
|