ViewCustomerStick.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.Invoice
  9. {
  10. [Table("v_customerstick")]
  11. public class ViewCustomerStick:Entity<int>
  12. {
  13. public string OrderNo { get; set; }
  14. public string StockNo { get; set; }
  15. public string OrderSendBillNo { get; set; }
  16. public DateTime? SendDate { get; set; }
  17. public string PartNo { get; set; }
  18. public string Model { get; set; }
  19. public string SurfaceColor { get; set; }
  20. public string Rigidity { get; set; }
  21. public decimal? SendQuantity { get; set; }
  22. public int? OrderUnitId { get; set; }
  23. public decimal? Price { get; set; }
  24. public decimal? total { get; set; }
  25. public string CustomerId { get; set; }
  26. /*public int? OrderSendId { get; set; }*/
  27. public string OrderUnitName { get; set; }
  28. public string IsDoBill { get; set; }
  29. public string Remark { get; set; }
  30. public string OrderStickBillNo { get; set; }
  31. public string StatementBillNo { get; set; }
  32. //public string IsLock { get; set; }
  33. }
  34. }