|
@@ -10,16 +10,16 @@ import (
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
type RewardRangeData struct {
|
|
type RewardRangeData struct {
|
|
|
- Id int `orm:"column(id);auto" description:"代理奖励列表"`
|
|
|
|
|
- UserId string `orm:"column(user_id);size(0);null"`
|
|
|
|
|
- Sales string `orm:"column(sales);size(255);null" description:"总累计业绩"`
|
|
|
|
|
- PromoteName string `orm:"column(promote_name);size(255);null" description:"级别"`
|
|
|
|
|
- CommunityReward string `orm:"column(community_reward);size(255);null" description:"累计奖励"`
|
|
|
|
|
- CommunityRewardValue string `orm:"column(community_reward_value);size(255);null" description:"累计奖励价值"`
|
|
|
|
|
- TodayTeamSales string `orm:"column(today_team_sales);size(255);null" description:"今天新增业绩"`
|
|
|
|
|
- CommunitySales string `orm:"column(community_sales);size(255);null" description:"小区业绩"`
|
|
|
|
|
- GlobalReward string `orm:"column(global_reward);size(255);null" description:"累计分红奖励"`
|
|
|
|
|
- GlobalRewardValue string `orm:"column(global_reward_value);size(255);null" description:"累计分红奖励价值"`
|
|
|
|
|
|
|
+ Id int `orm:"column(id);auto" description:"代理奖励列表" json:"-"`
|
|
|
|
|
+ UserId string `orm:"column(user_id);size(0);null" json:"user_id"`
|
|
|
|
|
+ Sales string `orm:"column(sales);size(255);null" description:"总累计业绩" json:"sales"`
|
|
|
|
|
+ PromoteName string `orm:"column(promote_name);size(255);null" description:"级别" json:"promote_name"`
|
|
|
|
|
+ CommunityReward string `orm:"column(community_reward);size(255);null" description:"累计奖励" json:"community_reward"`
|
|
|
|
|
+ CommunityRewardValue string `orm:"column(community_reward_value);size(255);null" description:"累计奖励价值" json:"community_reward_value"`
|
|
|
|
|
+ TodayTeamSales string `orm:"column(today_team_sales);size(255);null" description:"今天新增业绩" json:"today_team_sales"`
|
|
|
|
|
+ CommunitySales string `orm:"column(community_sales);size(255);null" description:"小区业绩" json:"community_sales"`
|
|
|
|
|
+ GlobalReward string `orm:"column(global_reward);size(255);null" description:"累计分红奖励" json:"global_reward"`
|
|
|
|
|
+ GlobalRewardValue string `orm:"column(global_reward_value);size(255);null" description:"累计分红奖励价值" json:"global_reward_value"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (t *RewardRangeData) TableName() string {
|
|
func (t *RewardRangeData) TableName() string {
|