WeChatFollowUserEntity.cs 749 B

1234567891011121314151617181920212223
  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 : OldBaseEntity<int>
  10. {
  11. public string? openid { get; set; }
  12. [SugarColumn(ColumnName = "UserID")]
  13. public override int Id { get => base.Id; set => base.Id = value; }
  14. //public int UserID { get; set; }
  15. public string appid { get; set; }
  16. public int subscribe { get; set; }
  17. public string unionid { get; set; }
  18. public int IsSynchUnionID { get; set; }
  19. public DateTime InsertTime { get; set; }
  20. public DateTime UpdateTime { get; set; }
  21. }