//------------------------------------------------------------------------------ // // 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.Repository.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.User= string.Empty; this.Time= DateTime.Now; this.OrgId= string.Empty; } /// /// 产品名称 /// 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 string User { get; set; } /// /// 操作时间 /// public System.DateTime Time { get; set; } /// /// 组织ID /// public string OrgId { get; set; } } }