| | |
| | | /// </summary> |
| | | public string createTime; |
| | | /// <summary> |
| | | /// 用户账号 |
| | | /// </summary> |
| | | public string Account = ""; |
| | | /// <summary> |
| | | /// 用户名字 |
| | | /// </summary> |
| | | public string UserName = ""; |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public string childAccountEmail; |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public string childAccountPhone; |
| | | /// <summary> |
| | | /// 用户账号 |
| | | /// 优先显示手机号,如果手机号为空则显示邮箱地址 |
| | | /// </summary> |
| | | public string Account |
| | | { |
| | | get |
| | | { |
| | | if (!string.IsNullOrEmpty(childAccountPhone)) |
| | | { |
| | | return childAccountPhone; |
| | | } |
| | | else |
| | | { |
| | | if (!string.IsNullOrEmpty(childAccountEmail)) |
| | | { |
| | | return childAccountEmail; |
| | | } |
| | | else |
| | | { |
| | | return ""; |
| | | } |
| | | |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | public class ShareData |