12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using Datory.Annotations;
- namespace GxPress.Entity.VerificationCode
- {
-
-
-
- [DataTable("tede_verification_code")]
- public class VerificationCode : Datory.Entity
- {
-
-
-
-
- [DataColumn]
- public int Code { get; set; }
-
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
-
- [DataColumn]
- public int TypeId { get; set; }
-
-
-
-
- [DataColumn]
- public int ExpireTime { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsDisable { get; set; }
- }
- }
|