ViewStickBill.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using Abp.Domain.Entities;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ShwasherSys.Invoice
  9. {
  10. [Table("v_OrderStickBill")]
  11. public class ViewStickBill : Entity<string>
  12. {
  13. public string CustomerId { get; set; }
  14. public DateTime? CreatDate { get; set; }
  15. public string StickNum { get; set; }
  16. public string StickMan { get; set; }
  17. public string Description { get; set; }
  18. public DateTime? TimeCreated { get; set; }
  19. public string CustomerName { get; set; }
  20. public string Address { get; set; }
  21. public string LinkMan { get; set; }
  22. [DecimalPrecision()]
  23. public decimal? TotalPrice { get; set; }
  24. [DecimalPrecision()]
  25. public decimal? AfterTaxTotalPrice { get; set; }
  26. public string CurrencyId { get; set; }
  27. //开票状态(1:未开票 2:已开票)
  28. public int? InvoiceState { get; set; }
  29. //金额
  30. public decimal? Amount { get; set; }
  31. public string OriginalStickNum { get; set; }
  32. public string ReturnOrderNo { get; set; }
  33. public string OrderNo { get; set; }
  34. public int InvoiceType { get; set; }
  35. }
  36. }