ProjectDrawOutput.cs 611 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ZhonTai.Admin.Services.Project.Dto
  7. {
  8. public class CompanyDrawOutput
  9. {
  10. /// <summary>
  11. /// 当前比例
  12. /// </summary>
  13. public decimal CurrentRatio { get; set; }
  14. /// <summary>
  15. /// 下次抽成比例
  16. /// </summary>
  17. public decimal? NextRatio { get; set; }
  18. /// <summary>
  19. /// 下次抽成比例生效时间
  20. /// </summary>
  21. public DateTime? NextEffectDate { get; set; }
  22. }
  23. }