using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///办公系统出入库信息表 /// [SugarTable("OA_OutOfStorage")] public partial class OA_OutOfStorage { public OA_OutOfStorage(){ } /// /// Desc:信息编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:所属厂商 /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc:仓库编号 /// Default: /// Nullable:False /// public int WarehouseId {get;set;} /// /// Desc:货位编号 /// Default: /// Nullable:False /// public int CargoSpaceId {get;set;} /// /// Desc:货品编号 /// Default: /// Nullable:False /// public int GoodsId {get;set;} /// /// Desc:信息类型 /// Default: /// Nullable:False /// public string InfoType {get;set;} /// /// Desc:供应商编号 /// Default: /// Nullable:False /// public int SuppliersId {get;set;} /// /// Desc:暂定 /// Default: /// Nullable:True /// public decimal? Price {get;set;} /// /// Desc:数量 /// Default: /// Nullable:True /// public int? Quantity {get;set;} /// /// Desc:金额 /// Default: /// Nullable:True /// public decimal? AllMoney {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? BrandId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? PaperWeightId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? SpecificationId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? tanPrice {get;set;} } }