WeChatFollowUserEntity.cs 614 B

123456789101112131415161718192021
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SnapshotWinFormsApp.Entities.OldHotline;
  8. [SugarTable("ZG_CityHotline_Ver3.dbo.WeChat_FollowUsers")]
  9. public class WeChatFollowUserEntity
  10. {
  11. public string? openid { get; set; }
  12. public int UserID { get; set; }
  13. public string appid { get; set; }
  14. public int subscribe { get; set; }
  15. public string unionid { get; set; }
  16. public int IsSynchUnionID { get; set; }
  17. public DateTime InsertTime { get; set; }
  18. public DateTime UpdateTime { get; set; }
  19. }