| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Abp.Domain.Entities;
- namespace ShwasherSys.Invoice
- {
- [Table("vwOrderSendBill")]
- public class ViewOrderSendStickBill:Entity<int>
- {
- public int OrderItemId { get; set; }
- public DateTime? SendDate { get; set; }
- public decimal? SendQuantity { get; set; }
- public string Remark { get; set; }
- public string OrderSendBillNo { get; set; }
- public string OrderStickBillNo { get; set; }
- public string StatementBillNo { get; set; }
- // public Decimal? QuantityPerPack { get; set; }
- // public Decimal? PackageCount { get; set; }
- // public string ProductBatchNum { get; set; }
- public string UserIDLastMod { get; set; }
- public string OrderNo { get; set; }
- public string ProductNo { get; set; }
- public decimal Price { get; set; }
- public decimal totalprice { get; set; }
- public string IsReport { get; set; }
- public string PartNo { get; set; }
- public string ProductName { get; set; }
- public string Model { get; set; }
- public int? StandardId { get; set; }
- public string Material { get; set; }
- public string ProductDesc { get; set; }
- public string SurfaceColor { get; set; }
- public string Rigidity { get; set; }
- public string CustomerId { get; set; }
- public string LinkName { get; set; }
- public DateTime? OrderDate { get; set; }
- public int CustomerSendId { get; set; }
- public string StockNo { get; set; }
- public string OrderUnitName { get; set; }
- public string CurrencyId { get; set; }
- public decimal AfterTaxPrice { get; set; }
- /// <summary>
- /// 运费
- /// </summary>
- public decimal LogisticsFee { get; set; } = 0;
- /// <summary>
- /// 模具费
- /// </summary>
- public decimal MoldFee { get; set; } = 0;
- /// <summary>
- /// 运费(不含税)
- /// </summary>
- public decimal LogisticsFeeAfterTax { get; set; } = 0;
- /// <summary>
- /// 模具费(不含税)
- /// </summary>
- public decimal MoldFeeAfterTax { get; set; } = 0;
- public decimal AfterTaxTotalprice { get; set; }
- /// <summary>
- /// 发货单明细排序
- /// </summary>
- public int SendBillSort { get; set; } = 0;
- /// <summary>
- /// 对账单明细排序
- /// </summary>
- public int StatementBillSort { get; set; } = 0;
- }
- }
|