| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 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.OrderSendInfo
- {
- [Table("N_ViewOrderSends")]
- public class ViewOrderSend: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 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 CustomerName { 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 int? SaleType { get; set; }
- public decimal AfterTaxPrice { get; set; }
- public string StatementBillNo { get; set; }
- public DateTime? SendActionDate { get; set; }
- public string StandardName { 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;
- /// <summary>
- /// 发货单明细排序
- /// </summary>
- public int SendBillSort { get; set; } = 0;
- /// <summary>
- /// 对账单明细排序
- /// </summary>
- public int StatementBillSort { get; set; } = 0;
- }
- }
|