20 lines
342 B
C#
20 lines
342 B
C#
using System;
|
|
using System.Data;
|
|
using EAS.Data;
|
|
using EAS.Data.Access;
|
|
using EAS.Data.ORM;
|
|
|
|
namespace SOH.Entities
|
|
{
|
|
/// <summary>
|
|
/// 实体对象 t_kh(客户?)。
|
|
/// </summary>
|
|
public partial class t_kh: DataEntity<t_kh>
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return this.khmc;
|
|
}
|
|
}
|
|
}
|