123456789101112131415161718192021222324252627282930313233343536373839 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// CF_WechatSubscribe
- /// </summary>
- public partial class CF_WechatSubscribe
- {
- /// <summary>
- /// WechatSubscribeID
- /// </summary>
- public System.Guid WechatSubscribeID { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public Nullable<System.Guid> UserID { get; set; }
- /// <summary>
- /// OpenID
- /// </summary>
- public string OpenID { get; set; }
-
- /// <summary>
- /// CF_Student
- /// </summary>
- public virtual CF_Student CF_Student { get; set; }
- }
- }
|