27 lines
549 B
C#
27 lines
549 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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|