123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Datory;
- using Datory.Annotations;
- using GxPress.Common.Tools;
- namespace GxPress.Entity.WorkFlow
- {
-
-
-
- [DataTable("tede_flow_todo")]
- public class FlowTodo : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int ProcessId { get; set; }
-
-
-
- [DataColumn]
- public int FlowId { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public string Type { get; set; }
-
-
-
- [DataColumn]
- public bool IsDone { get; set; }
-
-
-
- [DataColumn]
- public bool IsChecked { get; set; }
-
-
-
-
- [DataColumn]
- public int DoneType { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsOperate { get; set; }
-
-
-
- [DataColumn]
- public string Message { get; set; }
-
-
-
- [JsonIgnore]
- [DataColumn]
- private string FileIdCollection { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsRead { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsRemind { get; set; }
-
-
-
-
- [DataColumn]
- public int Sort { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsReferral { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsCaseOr{ get; set; }
-
-
-
-
- [DataColumn]
- public int ParentId{ get; set; }
-
-
-
- public IEnumerable<int> FileIds
- {
- get => StringUtils.StringCollectionToIntList(FileIdCollection);
- set => FileIdCollection = StringUtils.ObjectCollectionToString(value);
- }
- }
- }
|