using System;
using System.Collections.Generic;
using System.Text;
using Datory;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 库存
///
[DataTable("tede_storehouse")]
public class Storehouse : Datory.Entity
{
///
/// 库存数
///
[DataColumn]
public int StorehouseCount { get; set; }
///
/// 录入时间
///
[DataColumn]
public DateTime EnteringDateTime { get; set; }
}
}