123456789101112131415161718192021222324252627282930 |
- using System.Collections.Generic;
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity.WorkProcess
- {
-
-
-
- [DataTable("tede_process_group")]
- public class ProcessGroup : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Name { get; set; }
-
-
-
- [DataColumn]
- public int Sort { get; set; }
-
-
-
- public IEnumerable<Process> Processes { get; set; }
- }
- }
|