123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using SharpCompress.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
-
-
-
- internal class CustomLabel
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; set; } = DateTime.MinValue;
- public DateTime UpdateTime { get; set; } = DateTime.MinValue;
- public bool IsDeleted { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public string FatherCode { get; set; }
-
-
-
- public CustomLabelType LabelType { get; set; }
-
-
-
- public bool IsShow { get; set; }
-
-
-
- public List<string> UserIds { get; set; } = new List<string>();
- }
-
-
-
- public enum CustomLabelType
- {
- Group,
- Label
- }
- }
|