//------------------------------------------------------------------------------
//
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
//
//------------------------------------------------------------------------------
using System;
namespace OpenAuth.Domain
{
///
/// 出入库信息表
///
public partial class Stock :Entity
{
public Stock()
{
this.Name= string.Empty;
this.Number= 0;
this.Price= 0;
this.Status= 0;
this.Viewable = string.Empty;
this.Time= DateTime.Now;
}
///
/// 产品名称
///
public string Name { get; set; }
///
/// 产品数量
///
public int Number { get; set; }
///
/// 产品单价
///
public decimal Price { get; set; }
///
/// 出库/入库
///
public int Status { get; set; }
///
///
///
public string Viewable { get; set; }
///
/// 操作时间
///
public System.DateTime Time { get; set; }
///
/// 组织ID
///
public System.Guid? OrgId { get; set; }
}
}