using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 证件类 /// public class Certificate { //用户ID public long UserId; //证件号码 public string Number; //证件类型:1表示省份证号码,0表示警官号 public int Type; }