MetadocumentBilling.cs 961 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class MetadocumentBilling
  7. {
  8. public long? MetadocumentId { get; set; }
  9. public long WorkspaceBillingId { get; set; }
  10. public int CreditCost { get; set; }
  11. public bool Watermark { get; set; }
  12. public int Quality { get; set; }
  13. public string ProcessProfile { get; set; }
  14. public bool Test { get; set; }
  15. public DateTime? Procesed { get; set; }
  16. public DateTime? ProcessStart { get; set; }
  17. public DateTime? Downloaded { get; set; }
  18. public int ProcessState { get; set; }
  19. public string Psinstance { get; set; }
  20. public DateTime Created { get; set; }
  21. public DateTime? Modified { get; set; }
  22. public virtual Metadocument Metadocument { get; set; }
  23. public virtual WorkspaceBilling WorkspaceBilling { get; set; }
  24. }
  25. }