123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ZhonTai.Admin.Services.Project.Dto
- {
- public class PriceGetPageOutput
- {
- public long Id { get; set; }
- public string Logo { get; set; }
- public string Name { get; set; }
- public List<PriceGetPageOutput_Price> prices { get; set; }
- }
- public class PriceGetPageOutput_Price {
- public long Id { get; set; }
- public string Name { get; set; }
- public decimal Price { get; set; }
- public int DrawPriceWay { get; set; }
- public decimal DrawRatio { get; set; }
- public decimal DrawPrice { get; set; }
- }
- }
|