using System; using System.Linq; using System.Text; using SqlSugar; namespace MyCode.Project.Domain.Model { /// ///出库单明细表 /// [SugarTable("StorageGoodsDocOutDetail")] public partial class StorageGoodsDocOutDetail { public StorageGoodsDocOutDetail(){ } /// /// Desc:主键ID /// Default:newid() /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public Guid ID {get;set;} /// /// Desc:关联主表ID /// Default: /// Nullable:False /// public Guid HeadId {get;set;} /// /// Desc:出库单明细ID /// Default: /// Nullable:True /// public long? RecId {get;set;} /// /// Desc:货品ID /// Default: /// Nullable:True /// public long? GoodsId {get;set;} /// /// Desc:货品编号 /// Default: /// Nullable:True /// public string GoodsNo {get;set;} /// /// Desc:货品名称 /// Default: /// Nullable:True /// public string GoodsName {get;set;} /// /// Desc:规格ID /// Default: /// Nullable:True /// public long? SkuId {get;set;} /// /// Desc:规格名称 /// Default: /// Nullable:True /// public string SkuName {get;set;} /// /// Desc:条码 /// Default: /// Nullable:True /// public string SkuBarcode {get;set;} /// /// Desc:单位 /// Default: /// Nullable:True /// public string UnitName {get;set;} /// /// Desc:成本单价 /// Default: /// Nullable:True /// public decimal? CuPrice {get;set;} /// /// Desc:成本金额 /// Default: /// Nullable:True /// public decimal? CuValue {get;set;} /// /// Desc:箱号 /// Default: /// Nullable:True /// public decimal? CaseNumber {get;set;} /// /// Desc:明细备注 /// Default: /// Nullable:True /// public string RowRemark {get;set;} /// /// Desc:辅助单位显示 /// Default: /// Nullable:True /// public string AssistUnit {get;set;} /// /// Desc:本位币含税金额 /// Default: /// Nullable:True /// public decimal? EstCost {get;set;} /// /// Desc:税额 /// Default: /// Nullable:True /// public decimal? EstTax {get;set;} /// /// Desc:含税单价 /// Default: /// Nullable:True /// public decimal? EstPrice {get;set;} /// /// Desc:无税单价 /// Default: /// Nullable:True /// public decimal? EstPriceNoTax {get;set;} /// /// Desc:无税金额 /// Default: /// Nullable:True /// public decimal? EstCostNoTax {get;set;} /// /// Desc:税率 /// Default: /// Nullable:True /// public decimal? TaxRate {get;set;} /// /// Desc:批次编号 /// Default: /// Nullable:True /// public decimal? BatchNo {get;set;} /// /// Desc:序列号 /// Default: /// Nullable:True /// public decimal? SerialNo {get;set;} /// /// Desc:生产日期 /// Default: /// Nullable:True /// public string ProductionDate {get;set;} /// /// Desc:到期日期 /// Default: /// Nullable:True /// public string ExpirationDate {get;set;} /// /// Desc:质保期 /// Default: /// Nullable:True /// public string ShelfLife {get;set;} /// /// Desc:质保期单位 /// Default: /// Nullable:True /// public string ShelfLiftUnit {get;set;} /// /// Desc:来源单据明细Id /// Default: /// Nullable:True /// public string SourceDetailId {get;set;} /// /// Desc:无税单价(原币种) /// Default: /// Nullable:True /// public decimal? TransNoTaxPrice {get;set;} /// /// Desc:无税金额(原币种) /// Default: /// Nullable:True /// public decimal? TransNoTaxAmount {get;set;} /// /// Desc:含税单价(原币种) /// Default: /// Nullable:True /// public decimal? TransHasTaxPrice {get;set;} /// /// Desc:含税金额(原币种) /// Default: /// Nullable:True /// public decimal? TransHasTaxAmount {get;set;} /// /// Desc:税额(原币种) /// Default: /// Nullable:True /// public decimal? TransTaxAmount {get;set;} /// /// Desc:自定义字段1 /// Default: /// Nullable:True /// public string DetailField1 {get;set;} /// /// Desc:自定义字段2 /// Default: /// Nullable:True /// public string DetailField2 {get;set;} /// /// Desc:自定义字段3 /// Default: /// Nullable:True /// public string DetailField3 {get;set;} /// /// Desc:自定义字段4 /// Default: /// Nullable:True /// public string DetailField4 {get;set;} /// /// Desc:自定义字段5 /// Default: /// Nullable:True /// public string DetailField5 {get;set;} /// /// Desc:是否正品 0-否 1-是 /// Default: /// Nullable:True /// public byte? IsCertified {get;set;} /// /// Desc:批准文号 /// Default: /// Nullable:True /// public string RegistrationNumber {get;set;} /// /// Desc:批文有效期 /// Default: /// Nullable:True /// public string ApprovalDate {get;set;} /// /// Desc:生产单位 /// Default: /// Nullable:True /// public string ProductionDepart {get;set;} /// /// Desc:生产批号 /// Default: /// Nullable:True /// public string BatchNumber {get;set;} /// /// Desc:数量 /// Default: /// Nullable:True /// public decimal? Quantity {get;set;} /// /// Desc:分类id /// Default: /// Nullable:True /// public int? CateId {get;set;} /// /// Desc:分类名称 /// Default: /// Nullable:True /// public string CateName {get;set;} /// /// Desc:体积(m3) /// Default: /// Nullable:True /// public decimal? Volume {get;set;} /// /// Desc:重量(kg) /// Default: /// Nullable:True /// public decimal? SkuWeight {get;set;} /// /// Desc:自定义字段6 /// Default: /// Nullable:True /// public string DetailField6 {get;set;} /// /// Desc:自定义字段7 /// Default: /// Nullable:True /// public string DetailField7 {get;set;} /// /// Desc:自定义字段8 /// Default: /// Nullable:True /// public string DetailField8 {get;set;} /// /// Desc:自定义字段9 /// Default: /// Nullable:True /// public string DetailField9 {get;set;} /// /// Desc:自定义字段10 /// Default: /// Nullable:True /// public string DetailField10 {get;set;} /// /// Desc:创建时间 /// Default:DateTime.Now /// Nullable:False /// public DateTime CreateTime {get;set;} /// /// Desc:更新时间 /// Default: /// Nullable:True /// public DateTime? UpdateTime {get;set;} } }