using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZhonTai.Admin.Services.Project.Dto { public class GetProjectPricePageOutput { /// /// 项目Id /// public long Id { get; set; } /// /// 项目Logo /// public string Logo { get; set; } /// /// 项目名称 /// public string Name { get; set; } /// /// 项目名称 /// public int Status { get; set; } /// /// 项目价格列表 /// public List Prices { get; set; } /// /// 预价格列表 /// public List PrePrices { get; set; } } public class PriceGetPageOutput_Price { /// /// 价格Id /// 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; } } }