using System;
using System.Collections.Generic;
using System.Text;
using Datory;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 发行数据
///
[DataTable("tede_sell")]
public class Sell : Datory.Entity
{
///
/// 发行金额
///
[DataColumn]
public int SellAmount { get; set; }
///
/// 发行册数
///
[DataColumn]
public int SellVolumeCount { get; set; }
///
/// 录入时间
///
[DataColumn]
public DateTime EnteringDateTime { get; set; }
}
}