This commit is contained in:
parent
138a8da41d
commit
d8527b01b1
|
@ -61,7 +61,7 @@ type OpListReq struct {
|
|||
}
|
||||
|
||||
type OpListData struct {
|
||||
List []*dbstruct.Zone `json:"list"`
|
||||
List []*OpZoneVO `json:"list"`
|
||||
Offset int `json:"offset"`
|
||||
More int `json:"more"`
|
||||
}
|
||||
|
|
|
@ -80,6 +80,7 @@ func (p *OpSetPrivateReq) ProvideNotNullValue() (params []*validator.JsonParam)
|
|||
params = make([]*validator.JsonParam, 0)
|
||||
|
||||
params = append(params, validator.NewInt64PtrParam("请确认待审批动态的id!", p.ZoneMomentId))
|
||||
params = append(params, validator.NewStringParam("请确认人工审批意见!", p.ManuallyReviewOpinion))
|
||||
|
||||
return
|
||||
}
|
||||
|
|
|
@ -214,6 +214,7 @@ type OpHeadResp struct {
|
|||
type OpSetPrivateReq struct {
|
||||
base.BaseRequest
|
||||
ZoneMomentId *int64 `json:"zone_moment_id"`
|
||||
ManuallyReviewOpinion string `json:"manually_review_opinion"`
|
||||
}
|
||||
|
||||
type OpSetPrivateData struct {
|
||||
|
|
|
@ -3215,7 +3215,7 @@ func (s *Service) OpDeleteZone(ctx *gin.Context, id int64) (ec errcode.ErrCode)
|
|||
return
|
||||
}
|
||||
|
||||
func (s *Service) OpGetZoneList(ctx *gin.Context, req *zoneproto.OpListReq) (list []*dbstruct.Zone, ec errcode.ErrCode) {
|
||||
func (s *Service) OpGetZoneList(ctx *gin.Context, req *zoneproto.OpListReq) (volist []*zoneproto.OpZoneVO, ec errcode.ErrCode) {
|
||||
ec = errcode.ErrCodeZoneSrvOk
|
||||
list, err := _DefaultZone.OpList(ctx, req)
|
||||
if err != nil {
|
||||
|
@ -3223,6 +3223,15 @@ func (s *Service) OpGetZoneList(ctx *gin.Context, req *zoneproto.OpListReq) (lis
|
|||
ec = errcode.ErrCodeZoneSrvFail
|
||||
return
|
||||
}
|
||||
|
||||
// 填充必要信息
|
||||
volist, err = s.utilFillZonesWithOpVOInfo(ctx, list)
|
||||
if err != nil {
|
||||
logger.Error("utilFillZonesWithOpVOInfo fail, req: %v, err: %v", util.ToJson(req), err)
|
||||
ec = errcode.ErrCodeZoneSrvFail
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -3656,6 +3665,8 @@ func (s *Service) OpSetPrivateZoneMoment(ctx *gin.Context, req *zonemomentproto.
|
|||
ZoneMoment: &dbstruct.ZoneMoment{
|
||||
Id: req.ZoneMomentId,
|
||||
Status: goproto.Int64(consts.ZoneMoment_Private),
|
||||
ManuallyReviewStatus: goproto.Int64(consts.ZoneMomentManuallyReview_Rejected),
|
||||
ManuallyReviewOpinion: goproto.String(req.ManuallyReviewOpinion),
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue