56 lines
988 B
C#
56 lines
988 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>
|
|||
|
|
/// 实体对象 ts_ddfzb(销售订单分组表)。
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class ts_ddfzb: DataEntity<ts_ddfzb>
|
|||
|
|
{
|
|||
|
|
[XmlIgnore]
|
|||
|
|
public double fzjg_v
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return fzjg / 100.0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
fzjg = (int)(value * 100);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
[XmlIgnore]
|
|||
|
|
public double ssjg_v
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return ssjg / 100.0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
ssjg = (int)(value * 100);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
[XmlIgnore]
|
|||
|
|
public double yjfy_v
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return yjfy / 100.0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
yjfy = (int)(value * 100);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|