123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class DQP_Document
- {
- public DQP_Document()
- {
- this.CF_College = new HashSet<CF_College>();
- this.CF_Department = new HashSet<CF_Department>();
- this.Sys_Role = new HashSet<Sys_Role>();
- }
-
-
-
-
- public System.Guid DocumentID { get; set; }
-
-
-
- public Nullable<int> SOCDocTypeID { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual HashSet<CF_College> CF_College { get; set; }
-
-
-
- public virtual HashSet<CF_Department> CF_Department { get; set; }
-
-
-
- public virtual HashSet<Sys_Role> Sys_Role { get; set; }
- }
- }
|