12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnapshotWinFormsApp.Application.Dtos;
- public class WeChatUserDto
- {
- public string? openid { get; set; }
- public string WUR_Openid { get; set; }
- public int WUR_WebUserID { get; set; }
- public string WUR_WebUserName { get; set; }
- public string WUR_WebLoginName { get; set; }
- public string WUR_PhoneNum { get; set; }
- public string WUR_LoginPWD { get; set; }
- public string WUR_Gender { get; set; }
- public string WUR_IDCard { get; set; }
- public int WUR_AreaID { get; set; }
- public string WUR_Address { get; set; }
- public string WUR_Mail { get; set; }
- public string WUR_RegIP { get; set; }
- public DateTime WUR_RegDate { get; set; }
- public string? WUR_StateFlag { get; set; }
- public string WUR_LastIP { get; set; }
- public DateTime WUR_LastDate { get; set; }
- public string WUR_SyncState { get; set; }
- public string WUR_unionid { get; set; }
- public string WUR_Img { get; set; }
- public string WUR_UserType { get; set; }
- public int WUR_Flag { get; set; }
- public int UserID { get; set; }
- public string appid { get; set; }
- public int subscribe { get; set; }
- public string unionid { get; set; }
- public int IsSynchUnionID { get; set; }
- public DateTime InsertTime { get; set; }
- public DateTime UpdateTime { get; set; }
- }
|