package promotion_m import "git.hilo.cn/hilo-common/resource/mysql" // 推广员 type PromotionAgent struct { mysql.Entity ManagerId mysql.ID AgentId mysql.ID } // 邀请关系 type PromotionInvite struct { mysql.Entity ManagerId mysql.ID AgentId mysql.ID Invitee mysql.ID Platform string PlatformId string Reason string InviteDate string } // 邀请关系日志 type PromotionInviteLog struct { mysql.Entity AgentId mysql.ID Invitee mysql.ID AddReduce mysql.AddReduce }