123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Financial
- {
-
-
-
- public class Fin_GroupCommissionView
- {
- }
-
-
-
- public class Fin_GroupProfitInfoView
- {
-
-
-
- public int Diid { get; set; }
-
-
-
- public decimal ReceivableFund { get; set; }
-
-
-
- public decimal ReceivedFund { get; set; }
-
-
-
- public decimal Refund { get; set; }
-
-
-
- public decimal Cost { get; set; }
-
-
-
- public decimal RetainedProfits { get; set; }
-
-
-
- public decimal FinalPayment { get; set; }
- }
- }
|