28 lines
558 B
C#
28 lines
558 B
C#
|
|
using EAS.Data.ORM;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace SOH.Entities
|
|||
|
|
{
|
|||
|
|
public partial class pd_jianqu : DataEntity<pd_jianqu>
|
|||
|
|
{
|
|||
|
|
[Virtual]
|
|||
|
|
public string txt_khlx
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
foreach(var d in DTO.dto_khlx.khlxs)
|
|||
|
|
{
|
|||
|
|
if(d.id==khlx)
|
|||
|
|
{
|
|||
|
|
return d.leixing;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
return "";
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|