using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZhonTai.Admin.Services.Project.Dto { public class CompanyDrawOutput { /// /// 当前比例 /// public decimal CurrentRatio { get; set; } /// /// 下次抽成比例 /// public decimal? NextRatio { get; set; } /// /// 下次抽成比例生效时间 /// public DateTime? NextEffectDate { get; set; } } }