1234567891011121314151617181920212223242526272829303132333435363738 |
- //------------------------------------------------------------------------------
- // <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>
- /// Sys_ProcessRelation
- /// </summary>
- public partial class Sys_ProcessRelation
- {
- /// <summary>
- /// ProcessRelation
- /// </summary>
- public System.Guid ProcessRelation { get; set; }
- /// <summary>
- /// formID
- /// </summary>
- public Nullable<System.Guid> formID { get; set; }
- /// <summary>
- /// InstanceID
- /// </summary>
- public string InstanceID { get; set; }
- /// <summary>
- /// TableName
- /// </summary>
- public string TableName { get; set; }
- }
- }
|