You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
865 B

2 years ago
  1. namespace Entity.ViewModels
  2. {
  3. public class View_OPM_BillIReport
  4. {
  5. public string BillNO { get; set; }
  6. public string BillType { get; set; }
  7. public string ParentId { get; set; }
  8. public string ProjectNumber { get; set; }
  9. public string CustomerCode { get; set; }
  10. public string CustomerName { get; set; }
  11. public string ResponsiblePerson { get; set; }
  12. public string Currency { get; set; }
  13. public string ExchangeRate { get; set; }
  14. public decimal? InCome { get; set; }
  15. public string IsReturn { get; set; }
  16. public string Weight { get; set; }
  17. public string Volume { get; set; }
  18. public string AuditVal { get; set; }
  19. public string OrgID { get; set; }
  20. public string ReFlow { get; set; }
  21. public string FeeItems { get; set; }
  22. }
  23. }