using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Statistics { /// /// 企业利润报表 /// public class CorporateProfit { public int DiId { get; set; } public string TeamName { get; set; } public string CreateDt { get; set; } /// /// 总支出 /// public decimal TotalExpenditure { get; set; } /// /// 支出Item /// public List ExpenditureItem { get; set; } /// /// 应收金额 /// public decimal AmountReceivable { get; set; } /// /// 已收金额 /// public decimal AmountReceived { get; set; } /// /// 应收利润 /// public decimal ReceivableProfit { get; set; } /// /// 已收利润 /// public decimal ReceivedProfit { get; set; } } public class ExpenditureInfo { /// /// 名称 /// public string ItemName { get; set; } /// /// 金额 /// public decimal Amount { get; set; } } }