12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_often_contact")]
- public class OftenContact : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public string ContactUserId { get; set; }
-
-
-
- [DataColumn]
- public int IndividualGroupId { get; set; }
-
-
-
- [DataColumn]
- public DateTime UpdateTime { get; set; }
-
-
-
- [DataColumn]
- public int ChatType { get; set; }
-
-
-
- [DataColumn]
- public bool IsBlack { get; set; }
-
-
-
- [DataColumn]
- public bool IsTop { get; set; }
-
-
-
- [DataColumn]
- public bool IsDelete { get; set; }
- }
- }
|