28 lines
564 B
C#
28 lines
564 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class UnionInfo : MonoBehaviour
|
|
{
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
GetData();
|
|
}
|
|
|
|
//»ñµÃÊý¾Ý
|
|
public async void GetData()
|
|
{
|
|
UnionDetail17 unionDetail = new UnionDetail17();
|
|
UnionDetalResponse Detail = await unionDetail.queryUnionDetail(1);
|
|
Debug.Log(Detail.Data.BizUnionUserModelList[0].CreateTime);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|