123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using Datory.Annotations;
- namespace GxPress.Entity.WorkFlow
- {
-
-
-
- [DataTable("tede_flow_attachment")]
- public class FlowAttachment : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int SoureTypeId { get; set; }
-
-
-
- [DataColumn]
- public int TypeId { get; set; }
-
-
-
- [DataColumn]
- public int SoureId { get; set; }
-
-
-
-
- [DataColumn]
- public string Url { get; set; }
-
-
-
-
- [DataColumn]
- public string Title { get; set; }
-
-
-
-
- [DataColumn]
- public int FlowId { get; set; }
-
-
-
-
- [DataColumn]
- public int Size { get; set; }
-
-
-
-
- public string MinUrl { get; set; }
- }
- }
|