修复默认状态的bug

This commit is contained in:
徐俊杰 2023-03-03 13:59:36 +08:00
parent d30d4b2513
commit c55f561344
2 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,7 @@ func (a ArtshowArtistSupplementLogic) BatchCreateSupplement(request *artistinfoA
return errors.New(fmt.Sprintf("用户%s不存在", v))
}
datas = append(datas,
model.ArtshowArtistSupplement{LockTime: userInfo.LatestLockTime, ArtistUid: v, ArtistName: userInfo.RealName.Name, Status: 2},
model.ArtshowArtistSupplement{LockTime: userInfo.LatestLockTime, ArtistUid: v, ArtistName: userInfo.RealName.Name, Status: 2, AuditStatus: 5},
)
}
return dao.ArtistSupplement.BatchCreateData(datas)

View File

@ -113,6 +113,7 @@ message GetArtshowVideoDetailRequest{
string artistUid=1;
string lockTime=2;
int32 status=3;
int64 id=4;
}
//-------------------