using System; using BWP.B3Frameworks.BO; using Forks.EnterpriseServices; using Forks.EnterpriseServices.DataForm; using Forks.EnterpriseServices.DomainObjects2; using TSingSoft.WebPluginFramework; namespace BWP.B3DogAuth { [LogicName("黑贝认证")] [Serializable] [DFClass] [KeyField("ID", KeyGenType.assigned)] [DFCPrompt("序号", Property = "ID")] public class DogLoginUser : Base { [LogicName("用户ID")] [DFNotEmpty] public long User_ID { get; set; } [ReferenceTo(typeof(WpfUser), "Name")] [Join("User_ID", "ID")] [LogicName("用户名")] public string User_Name { get; set; } [ReferenceTo(typeof(WpfUser), "Stopped")] [Join("User_ID", "ID")] [LogicName("停用")] public bool? Stopped { get; set; } [LogicName("备注")] public string Remark { get; set; } } }