using System; namespace JiaZhiQuan.Common.Models.PO { /// /// n_user_invitation_partner /// public class UserInvitationPartnerPO { /// /// 用户编号 /// public long userId { get; set; } /// /// 合作方备注名 /// public string alias { get; set; } /// /// 所属分组编号 /// public int groupId { get; set; } /// /// 当前邀请单价(单位分) /// public int activeCost { get; set; } /// /// 是否禁用,默认启用 /// public bool disabled { get; set; } /// /// 有效的激活数(获利的,即注册激活都在合作时段内) /// public int invitationValidCount { get; set; } /// /// 累计邀请收益,如果摊销某些有效邀请,则同时要扣除总收益 /// public int invitationIncome { get; set; } /// /// 总计结算金额(分) /// public int settlementAmount { get; set; } /// /// 创建时间 /// public DateTime createAt { get; set; } } }