You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

42 lines
891 B

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;
}
}
}