123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity.WorkProcess
- {
-
-
-
- [DataTable("tede_process")]
- public class Process : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Name { get; set; }
-
-
-
- [DataColumn]
- public int GroupId { get; set; }
-
-
-
- [DataColumn]
- public string IconUrl { get; set; }
-
-
-
- [DataColumn]
- public string Description { get; set; }
-
-
-
- [DataColumn]
- public bool IsDisabled { get; set; }
-
-
-
- [DataColumn]
- public string LimitType { get; set; }
-
-
-
- [DataColumn]
- public int Sort { get; set; }
-
-
-
- [DataColumn]
- public bool AllowApproverCheck { get; set; }
-
-
-
- [DataColumn]
- public bool AllowCarbonCopy { get; set; }
-
-
-
- [DataColumn]
- public string TemplatePath { get; set; }
- }
- }
|