30 lines
526 B
C#
30 lines
526 B
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_jjxb(加减项表)。
|
|
/// </summary>
|
|
public partial class t_jjxb: DataEntity<t_jjxb>
|
|
{
|
|
[XmlIgnore]
|
|
public double v_jjxje
|
|
{
|
|
get
|
|
{
|
|
return jjxje / 100.0;
|
|
}
|
|
|
|
set
|
|
{
|
|
jjxje = (short)(value * 100);
|
|
}
|
|
}
|
|
}
|
|
}
|