65 lines
1.3 KiB
C#
65 lines
1.3 KiB
C#
using System;
|
|
using System.Data;
|
|
using EAS.Data;
|
|
using EAS.Data.Access;
|
|
using EAS.Data.ORM;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SOH.Entities
|
|
{
|
|
/// <summary>
|
|
/// 实体对象 t_ttsfjl(回款记录表)。
|
|
/// </summary>
|
|
public partial class t_ttsfjl: DataEntity<t_ttsfjl>
|
|
{
|
|
[XmlIgnore]
|
|
public double jg_v
|
|
{
|
|
get
|
|
{
|
|
return je / 100.0;
|
|
}
|
|
|
|
set
|
|
{
|
|
je = (int)(value * 100);
|
|
}
|
|
}
|
|
|
|
[XmlIgnore]
|
|
public string jffsmc
|
|
{
|
|
get
|
|
{
|
|
switch (jffs)
|
|
{
|
|
case 0:
|
|
return "现金";
|
|
case 1:
|
|
return "银行卡";
|
|
case 2:
|
|
return "支票";
|
|
case 3:
|
|
return "医疗保险";
|
|
case 4:
|
|
return "免费";
|
|
case 5:
|
|
return "套餐卡";
|
|
case 6:
|
|
return "记账卡";
|
|
default :
|
|
return "";
|
|
}
|
|
}
|
|
set
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|