//------------------------------------------------------------------------------
//
// 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;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
///
/// 出入库信息表
///
public partial class Stock
{
public Stock()
{
this.Id= 0;
this.Name= string.Empty;
this.Number= 0;
this.Price= 0;
this.Status= 0;
this.User= string.Empty;
this.Time= DateTime.Now;
this.OrgId= 0;
}
///
/// 数据ID
///
public int Id { get; set; }
///
/// 产品名称
///
public string Name { get; set; }
///
/// 产品数量
///
public int Number { get; set; }
///
/// 产品单价
///
public decimal Price { get; set; }
///
/// 出库/入库
///
public int Status { get; set; }
///
///
///
public string User { get; set; }
///
/// 操作时间
///
public System.DateTime Time { get; set; }
///
/// 组织ID
///
public int OrgId { get; set; }
}
}