1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_ProcessRelation
- {
-
-
-
- public System.Guid ProcessRelation { get; set; }
-
-
-
- public Nullable<System.Guid> formID { get; set; }
-
-
-
- public string InstanceID { get; set; }
-
-
-
- public string TableName { get; set; }
- }
- }
|