123456789101112131415161718192021222324252627282930 |
- package youngee_talent_model
- import "youngmini_server/app/model"
- type YounggeeTeamTaskInfo struct {
- Avatar string `json:"avatar"` // 头像
- TalentWxNickname string `json:"talent_wx_nickname"` // 昵称
- PointIncome int `json:"point_income"` // 积分收益
- MoneyIncome float64 `json:"money_income"` // 现金收益
- TaskStage int `json:"task_stage"` // 任务阶段
- CurDefaultStatus int `json:"cur_default_status"` // 当前违约状态
- }
- type AddYoungTeamReq struct {
- ProjectType int `json:"project_type"` // 项目类型,1为项目,2为选品
- ProjectId string `json:"project_id"`
- SelectionId string `json:"selection_id"`
- }
- type GetLeadYoungTeamIdRsp struct {
- TeamId string `json:"team_id"`
- Num int `json:"num"`
- }
- type GetYoungTeamListRsp struct {
- YoungTeamList []*model.YounggeeTalentTeam `json:"young_team_list"`
- Num int `json:"num"`
- PointIncome int `json:"point_income"`
- MoneyIncome float64 `json:"money_income"`
- }
|