using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZhonTai.Admin.Services.Project.Dto { public class ProjectPriceAddInput { /// /// 项目价格Id /// public long Id { get; set; } /// /// 结算标准 /// public string Name { get; set; } /// /// 价格 /// public decimal Price { get; set; } } }