调整任务列表以及同步任务接口

This commit is contained in:
2025-07-08 12:47:21 +08:00
parent 1a5cc50881
commit 340940cbfb
13 changed files with 160 additions and 170 deletions

View File

@ -13,5 +13,5 @@ func (c *ControllerV1) StoreLogin(ctx context.Context, req *v1.StoreLoginReq) (r
if err != nil {
return nil, err
}
return &v1.StoreLoginRes{Token: out.Token}, nil
return &v1.StoreLoginRes{Token: out.Token, StoreId: out.StoreId, StoreName: out.StoreName, NetbarAccount: out.NetbarAccount}, nil
}