You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
500 B
C#
23 lines
500 B
C#
namespace DB.Entity
|
|
{
|
|
/// <summary>
|
|
/// 页面编码 手动界面,参数界面,主界面
|
|
/// code 对应页面的名称 fromMain
|
|
/// </summary>
|
|
public class Function:BaseChimsDb
|
|
{
|
|
public string FunctionName { get; set; }
|
|
|
|
public string FunctionCode { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class FunctionMapper : SystemEntityTypeBuilder<Function>
|
|
{
|
|
public FunctionMapper() : base("Function")
|
|
{
|
|
|
|
}
|
|
}
|
|
} |