| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace Winsoft.GOV.XF.WebApi.WXCore.Models
- {
- [JsonObject(MemberSerialization.OptOut)]
- public class WXUser
- {
- public int Id { get; set; }
- [JsonIgnore]
- public string OpenId { get; set; }
- public string Mobile { get; set; }
- [JsonConverter(typeof(ChinaDateTimeConverter))]
- public DateTime CreateDate { get; set; }
- }
- }
|