20 lines
383 B
C#
20 lines
383 B
C#
using System;
|
|
using System.Data;
|
|
using EAS.Data;
|
|
using EAS.Data.Access;
|
|
using EAS.Data.ORM;
|
|
|
|
namespace SOH.Entities
|
|
{
|
|
/// <summary>
|
|
/// 实体对象 ts_khlxr(客户联系人表)。
|
|
/// </summary>
|
|
public partial class ts_khlxr: DataEntity<ts_khlxr>
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return this.xm+"("+this.lxrgddh+")";
|
|
}
|
|
}
|
|
}
|