PriceGetPageOutput.cs 714 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ZhonTai.Admin.Services.Project.Dto
  7. {
  8. public class PriceGetPageOutput
  9. {
  10. public long Id { get; set; }
  11. public string Logo { get; set; }
  12. public string Name { get; set; }
  13. public List<PriceGetPageOutput_Price> prices { get; set; }
  14. }
  15. public class PriceGetPageOutput_Price {
  16. public long Id { get; set; }
  17. public string Name { get; set; }
  18. public decimal Price { get; set; }
  19. public int DrawPriceWay { get; set; }
  20. public decimal DrawRatio { get; set; }
  21. public decimal DrawPrice { get; set; }
  22. }
  23. }