ViewOrderSendBill.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Abp.Domain.Entities;
  8. namespace ShwasherSys.OrderSendInfo
  9. {
  10. [Table("v_OrderSendBill")]
  11. public class ViewOrderSendBill:Entity<string>
  12. {
  13. public string CustomerId { get; set; }
  14. public DateTime? SendDate { get; set; }
  15. public string SendAddress { get; set; }
  16. public string ContactTels { get; set; }
  17. public string ContactMan { get; set; }
  18. public DateTime? TimeCreated { get; set; }
  19. public DateTime? TimeLastMod { get; set; }
  20. public string UserIDLastMod { get; set; }
  21. public string IsDoBill { get; set; }
  22. //public string StickNum { get; set; }
  23. //public string StickMan { get; set; }
  24. // public DateTime? CreatDate { get; set; }
  25. // public string isbill { get; set; }
  26. public int OrderSendCount { get; set; }
  27. public int StatementCount { get; set; }
  28. public int? ExpressId { get; set; }
  29. public string ExpressBillNo { get; set; }
  30. public string ExpressName { get; set; }
  31. public string CreatorUserId { get; set; }
  32. [DecimalPrecision()]
  33. public decimal? TotalPrice { get; set; }
  34. [DecimalPrecision()]
  35. public decimal? AfterTaxTotalPrice { get; set; }
  36. public string CurrencyId { get; set; }
  37. }
  38. public class ViewOrderSendBillDto : Entity<string>
  39. {
  40. // public string OrderSendBillNo { get; set; }
  41. public string CustomerId { get; set; }
  42. public DateTime? SendDate { get; set; }
  43. // public string SendAddress { get; set; }
  44. public string ContactTels { get; set; }
  45. public string ContactMan { get; set; }
  46. public int OrderSendCount { get; set; }
  47. public int StatementCount { get; set; }
  48. public int? ExpressId { get; set; }
  49. public string ExpressBillNo { get; set; }
  50. public string ExpressName { get; set; }
  51. // public string CreatorUserId { get; set; }
  52. [DecimalPrecision()]
  53. public decimal? TotalPrice { get; set; }
  54. [DecimalPrecision()]
  55. public decimal? AfterTaxTotalPrice { get; set; }
  56. public string CurrencyId { get; set; }
  57. }
  58. }